#include #include // this is where all the SYSTEM functions are called from although it is generally not needed using namespace std; int main(void) { cout << "HELLO WORLD" << endl; return system("pause"); // this is new to you and all it does is tell the program to pause and display the message 'Press any key to continue...' }