Created
November 20, 2018 02:15
-
-
Save CalebCurry/28e8fc1bf2cd83d1a87ca22175c5c0ba 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 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