Computer Science, asked by jaiganeshce, 13 hours ago

write a C program to find the sum of two numbers ​

Answers

Answered by SULTHANASAJI
2

Explanation:

Program : C Program to find sum of two numbers

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

Answered by ashwinibadgujar7382
2

Answer:

Program : C Program to find sum of two numbers

#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