Write a program to calculate the sum of two number
Answers
Answered by
1
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
Computer Science,
2 months ago
English,
2 months ago
Biology,
2 months ago
Hindi,
5 months ago
Environmental Sciences,
11 months ago
Math,
11 months ago
Accountancy,
11 months ago