Skip to content

Instantly share code, notes, and snippets.

@tuzzeg
Created May 27, 2015 05:14
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 tuzzeg/7ec508db4308477d080e to your computer and use it in GitHub Desktop.
Save tuzzeg/7ec508db4308477d080e to your computer and use it in GitHub Desktop.
slide to operator
int main() {
int i = 100;
// while i slides down to 0
while ( i --\
\
\
> 0 ) {
printf("test");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment