Subscribe to Feeds

Send Your Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]

Add 2 nos.

Click Here To Download C File Of This Program

 //Program 2 to add 2 Nos. 
//Downloaded from www.c4cprog.co.nr
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter 2 Nos. : ");
scanf("%d%d",&a,&b);
c=a+b;
printf("The Sum is : %d",c);
getch();
}

0 comments:

Post a Comment