Computer Science, asked by nitishkumar2932, 6 months ago

write a program to accept two numbers and find and print sum of two num​

Answers

Answered by ammar8297
3

Explanation:

#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