Skip to content

Instantly share code, notes, and snippets.

@yorickdewid
Created November 16, 2015 20:15
Show Gist options
  • Save yorickdewid/e9a74e4cc00ba8cfd613 to your computer and use it in GitHub Desktop.
Save yorickdewid/e9a74e4cc00ba8cfd613 to your computer and use it in GitHub Desktop.
Strange C
#include <stdio.h>
#include <stdlib.h>
int main() {
int i = 1;
switch(i) {
case 1:
for(; i<3; ++i)
printf("i : %d\n", i);
default:
printf("i> : %d\n", i);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment