c program for Sum
#include <stdio.h>
main()
{
int a,b,c;
printf("enter the value of a & b");
scanf("%d%d",&a,&b);
c=a+b;
printf("sum of the two numbers is a+b- %d",c);
getch();
}
#include <stdio.h>
main()
{
int a,b,c;
printf("enter the value of a & b");
scanf("%d%d",&a,&b);
c=a+b;
printf("sum of the two numbers is a+b- %d",c);
getch();
}
Comments
Post a Comment