WAP to calculate the sum of any two numbers 5&6
Answers
Answered by
0
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);
output
Enter two no:
5 6
sum: 11
Similar questions