This doesn\'t work:
string temp; cout << \"Press Enter to Continue\"; cin >> temp;
Yet another solution, but for C. Requires Linux.
#include #include int main(void) { printf("Press any key to continue..."); system("/bin/stty raw"); //No Enter getchar(); system("/bin/stty cooked"); //Yes Enter return 0; }