Just do what The Coding Area said:
Quote: "For the latter, put in a command that waits a certain amount of time or until the user presses a key."
You could use the following, if you are trying c++, remember to declare iostream.h
char temp; // Declare a temp variable
cout << "Hello There" << "n"; // Just some text to print in cmd
cin >> temp; // Waiting until you press enter with some characters
I would suggest in getting a book for C or C++, and looking at the net for some tutorials. There is tons, just search for them on google
Kind Regards
A Good Programmer never blames his tools