Last active
August 26, 2015 09:58
-
-
Save aadimator/7207f7f1b3e666403b2c to your computer and use it in GitHub Desktop.
waitForUser();
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void waitForUser () { | |
cout << "Press Enter to continue...." << endl; | |
if (cin.get() != '\n') cin.ignore(100, '\n'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment