1.

Write a program to print the sum of two numbers .​

Answer»

ong>EXPLANATION:

Program : C Program to FIND sum of TWO NUMBERS

#include

int main() {

int a, b, sum;

printf("\nEnter two no: ");

scanf("%d %d", &a, &b);

sum = a + b;

printf("Sum : %d", sum);

return(0);



Discussion

No Comment Found