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
#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:
Post a Comment