View Single Post
Old 09-08-2007, 09:29 AM   #8 (permalink)
whoopy_whale
In The Zone
 
whoopy_whale's Avatar
 
Join Date: Sep 2004
Location: Bermuda Triangle
Posts: 239
Default Re: C++:Adding two numbers

Don.t forget to add the main() function too...

Code:
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b;
cin>>a>>b;
cout<<a+b;
getch();
}
__________________
In just two days, tomorrow will be yesterday.
whoopy_whale is offline