Computer Science, asked by Achievements1708, 6 hours ago

WAP to calculate the sum of any two numbers 5&6

Answers

Answered by varsha6371513
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