WAP to calculate the sum of two numbers.
Answers
Answered by
0
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);
Explanation:
Similar questions
Math,
3 months ago
Environmental Sciences,
3 months ago
English,
8 months ago
English,
8 months ago
English,
1 year ago