CODE BELOW :
#include <stdio.h>
#include <conio.h>
void main()
{
int a,b,c;
clrscr();
printf("enter the integer value\n");
scanf("%d%d",&a,&b);
c=a+b;
printf("sum=%d",c);
getch();
}
0 Comments