Computer Science, asked by lahkarparinistha, 16 days ago

Write a program to calculate the sum of two given numbers.​

Answers

Answered by tanishkchahal90
1

Answer:

#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