1.

Write a program to enter any two number then find sum​

Answer»

Answer:

Program : C Program to find SUM of TWO numbers

Program : C Program to find sum of two numbers#include

Program : C Program to find sum of two numbers#includeint MAIN() {

Program : C Program to find sum of two numbers#includeint main() {int a, b, sum;

Program : C Program to find sum of two numbers#includeint main() {int a, b, sum;printf("\nEnter two no: ");

Program : C Program to find sum of two numbers#includeint main() {int a, b, sum;printf("\nEnter two no: ");scanf("%d %d", &a, &b);

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;

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);

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);

Explanation:

Please mark as Brainlist Answer



Discussion

No Comment Found