Skip to content

Instantly share code, notes, and snippets.

@artnez
Created June 8, 2014 07:27
Show Gist options
  • Save artnez/a00784669a846743428b to your computer and use it in GitHub Desktop.
Save artnez/a00784669a846743428b to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(char *arg, char **argv) {
int n = 10;
int i;
int m = 100;
switch (n) {
case 0:
m = 1;
while (m--) {
case 10:
printf("WAT: %i\n", m);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment