Skip to content

Instantly share code, notes, and snippets.

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