Skip to content

Instantly share code, notes, and snippets.

@dneary
Created April 15, 2014 08:19
Show Gist options
  • Save dneary/10713189 to your computer and use it in GitHub Desktop.
Save dneary/10713189 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
int i;
i = 100;
while (i-- > 0) {
printf ("i = %d\n", i);
} i++;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment