Skip to content

Instantly share code, notes, and snippets.

@jhidding
Created April 12, 2019 09:15
Show Gist options
  • Save jhidding/38d7cd0313be0ee276a500be8d43ec2f to your computer and use it in GitHub Desktop.
Save jhidding/38d7cd0313be0ee276a500be8d43ec2f to your computer and use it in GitHub Desktop.
#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