Computer Science, asked by 13jiyasharma, 1 month ago

write a program to calculate adding of two integer number ​

Answers

Answered by Anonymous
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);

Answered by jiyashah2901
1

Explanation:

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