Computer Science, asked by depthirajan1978, 6 months ago

write a program to find the sum of two integer number​

Answers

Answered by aadddiiii
0

Answer:

a+b=c

a= integers

b=integers

c=integers

Answered by vijayghore
1

Explanation:

#include<stdio.h>

void main()

{

int a,b,c;

clrscr();

printf("Enter the integers");

scanf("%d %d", &a, &b);

c = a + b;

printf("Addition = %d", c);

getch();

}

Similar questions