"C Language"
#include <stdio .h>
//SUM OF TWO NUMBERS
main()
{
int a,b,c;
printf("Enter two numbers to add");
scanf("%d%d",&a,&b);
c=a+b;
printf("Result=",a);
}
#include <stdio .h>
//SUM OF TWO NUMBERS
main()
{
int a,b,c;
printf("Enter two numbers to add");
scanf("%d%d",&a,&b);
c=a+b;
printf("Result=",a);
}
No comments:
Post a Comment