1.

Write a program to calculate the sum of two number​

Answer» PROGRAM : C Program to find SUM of two numbers#includeINT 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