Created
April 12, 2019 09:15
-
-
Save jhidding/38d7cd0313be0ee276a500be8d43ec2f 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
#include <stdlib.h> | |
#include <stdio.h> | |
int main() { | |
int i; | |
for (i = 0; i <= 0; ++i) {} | |
printf("i = %u\n", i); | |
return EXIT_SUCCESS; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment