Wednesday, October 5, 2016

C Tutorial 3- Add two numbers

#include<stdio.h>
main()
{
int a,b,sum;
a=2;
b=3;
sum=a+b;
printf("The sum of %d and %d is = %d  \n\n\n",a,b,sum);
}
Output

No comments:

Post a Comment