Skip to content

Instantly share code, notes, and snippets.

@othree
Created April 29, 2009 09:44
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 othree/103687 to your computer and use it in GitHub Desktop.
Save othree/103687 to your computer and use it in GitHub Desktop.
int i = 0
if (i == 0) {
// blah...
}
for (i = 0;i < 10;i++) {
if (i == 0) i++;
// do something same as blah...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment