write a program to find the sum of two integer number
Answers
Answered by
0
Answer:
a+b=c
a= integers
b=integers
c=integers
Answered by
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