Created
November 20, 2018 02:14
-
-
Save CalebCurry/53012fcb8b8fdbbf38719f89817b4b73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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