Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Last active June 3, 2016 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/567e007d2826fcecc42b8be5dfd5c60f to your computer and use it in GitHub Desktop.
Save ilpropheta/567e007d2826fcecc42b8be5dfd5c60f to your computer and use it in GitHub Desktop.
cin.ignore(numeric_limits<streamsize>::max(), ' ') >> S; // N will be ignored
// or, by including <climits>
cin.ignore(INT_MAX, ' ') >> S;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment