// pause.cpp // LICENSE: Nothing(do what ever you want!) #include using namespace std; int main(){ cout << "Press any key to continue..."; cin.clear(); cin.sync(); cin.get(); return 0; }