Thursday, February 28, 2013

2nd Program

This is a Simple program to add two fixed numbers


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
a=5;
b=44;
c=a+b;
cout<<"Sum = "<<c;
getch();
}


Click here to download

No comments: