C program to add two int numbers.
In this program we can add two integer values. Given by the user.
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter two noumbers : \n");
scanf("%d %d",&a,&b);
c=a+b;
printf("addition is %d \n",c);
getch();
}
No Comment to " C program to add two int numbers. "