Computer Science, asked by subhamjat129, 26 days ago


C Program - sum of two numbers

Answers

Answered by Anonymous
0

Please write the full question

Answered by soumyadebbiswas954
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