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
Science,
1 month ago
Hindi,
1 month ago
Hindi,
3 months ago
Environmental Sciences,
9 months ago
Math,
9 months ago