Addition of two numbers using C language





#include<stdio.h>
int main()
{
   int a,b,Add;
   printf("enter the value for a :");
   scanf("%d",&a);
   printf("enter the value for b :");
   scanf("%d",&b);
   Add=a+b;
   printf("The Addition of a&b is:%d",Add);
}


No comments:

Post a Comment