Previous Program »» Quotient and Remainder of 2 numbers in C
The program for addition of 2 numbers in C Language is as follows:-
Next Post »» C Program for a specific formula
For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking
Like Us on Facebook or Follow on Twitter or Add to Circles on Google + to remain updated
The program for addition of 2 numbers in C Language is as follows:-
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
int=a,b,c;
printf("Enter two numbers to be added: ");
scanf("%d %d",&a,&b);
c=a+b;
printf("The sum is = %d",c);
getch();
}
Next Post »» C Program for a specific formula
For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking
Like Us on Facebook or Follow on Twitter or Add to Circles on Google + to remain updated