View Single Post
Old 24-12-2008, 10:06 PM   #19
sofl
Newbie

 
Join Date: Jun 2008
Location: Dresden, Germany
Posts: 4
Default

you can also use the getch() function

#include <conio.h>

int main()
{
...
cout<<"press any key";
getch();
return 0;
}
sofl is offline                         Send a private message to sofl
Reply With Quote