C Program - sum of two numbers
Answers
Answered by
0
Please write the full question
Answered by
1
Answer:
#include<stdio.h>
int main() {
int a, b, sum;
printf("\nEnter two no: ");
scanf("%d %d", &a, &b);
sum = a + b;
printf("Sum : %d", sum);
return(0);
}
Similar questions
Math,
1 month ago
India Languages,
2 months ago
English,
2 months ago
English,
9 months ago
Geography,
9 months ago