Write A Program In C to Add Two Numbers. (Programmed By Sandesh Acharya)
The Program TO Add Two Numbers In C is Very easy. We Can make Simple Calculator Apps Using C Programmming. Please Cick On Read More....To See The Program.
For Video Click This Link Below.......
#include<stdio.h>
int main() {
int a,b,s;
printf("Enter a First Number: ");
scanf("%d",&a);
printf("Enter a Second number: ");
scanf("%d",&b);
s=a+b;
printf("Sum of Two Numbers= %d",s);
return 0;
}
For Video Click This Link Below.......
Comments
Post a Comment