Skip to content

Instantly share code, notes, and snippets.

@skyzh
Created September 17, 2015 11:11
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 skyzh/ddd6f176912ec7fe29be to your computer and use it in GitHub Desktop.
Save skyzh/ddd6f176912ec7fe29be to your computer and use it in GitHub Desktop.
Read Space in string
for(int i = 0, j; i < str.length(); i = j + 1) {
for(j = i; j != ' ' && j < str.length(); ++j) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment