C Program to find the Sum of two numbers.
Answers
Answered by
1
Answer:
it's help you 3
write the answer 3or4
Answered by
1
Answer:
#include <stdio.h>
int main(){
int a,b,sum;
printf("Enter your first number:");
scanf("%d",&a);
printf("enter your second number:");
scanf ("%d",&b);
sum = a + b;
printf("Sum of %d and %d is %d",a,b,sum);
return 0;
}
Thank you
Similar questions