Skip to content

Instantly share code, notes, and snippets.

@aadimator
Last active August 26, 2015 09:58
Show Gist options
  • Save aadimator/7207f7f1b3e666403b2c to your computer and use it in GitHub Desktop.
Save aadimator/7207f7f1b3e666403b2c to your computer and use it in GitHub Desktop.
waitForUser();
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