Addition of two number

Addition of two number In C-Language:-

Addition of two number:

 Addition of two number is the basic program on c language,here you can find the detail,code of this program as:-


#include<stdio.h>
void main()
{
    int a,b,c;
printf("Enter two number:\n");
scanf("%d%d",&a,&b);
c=a+b;
printf("The sum of two number is %d ",c);
}

To better understand of Addition of two number code you can see the following video on it:-

Previous
Next Post »