Scroll To Top
News Trending
Related Posts Plugin for WordPress, Blogger...
Related Posts Plugin for WordPress, Blogger...
Related Posts Plugin for WordPress, Blogger...

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();
}

Share This:

Labels:

No Comment to " C program to add two int numbers. "