Skip to content

Instantly share code, notes, and snippets.

@CalebCurry
Created November 20, 2018 02:15
Show Gist options
  • Save CalebCurry/28e8fc1bf2cd83d1a87ca22175c5c0ba to your computer and use it in GitHub Desktop.
Save CalebCurry/28e8fc1bf2cd83d1a87ca22175c5c0ba to your computer and use it in GitHub Desktop.
int i;
printf("Count down from: ");
scanf("%i", &i);
for(; i >= 0; i = i - 2)
{
printf("%i\n", i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment