Can We run the simple addition program without iostram.h and conio.h..........?
Yes we can do this....................
Solution ..................
#include<constream.h>
void main()
{
clrscr();
int a,b,c;
cout<<"enter two number";
cin>>a>>b;
c=a+b;
cout<<"Sum="<<c;
getch();
}
Comments
Post a Comment