From: a.geo <aqu...@gm...> - 2008-12-24 14:42:55
|
#include<iostream> using namespace std; int main() { cout << "Hello World\n"; return 0; } Really your program is running right... so you need stop it after the cout, you can make it with some keyboard function... :D #include<iostream> #include "conio.h" using namespace std; int main() { cout << "Hello World\n"; getch(); // This function wait until you press a key return 0; } This is all... mmmmmmmmmmmm, I feel so nostalgic... T_____T -- -------------------------------------------------------- VISIT MY BLOG : http://ageo.blogspot.com/ picture blog : http://ageo.deviantart.com/journal/ |