1.

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

Answer»

tion:#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