View Single Post
Old 09-07-2002, 02:37 AM   #3 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
ur prob is "system(PAUSE)" is wrong
it is sposed to be:
Code:
system("pause");
and also you need to include <cstdlib>

Code:
#include <cstdlib>
using namespace std;

int main()
{
cout << "yup";
system("pause");
|
that'll work.
__________________
-- bloomberg.
abc123 is offline   Reply With Quote