Skip to content

Instantly share code, notes, and snippets.

@uplus
Created April 27, 2016 14:23
Show Gist options
  • Save uplus/88586e32cf131965df28f3da2e91822b to your computer and use it in GitHub Desktop.
Save uplus/88586e32cf131965df28f3da2e91822b to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
int a = 0;
if (a == 0)
for(int i = 0; i < 10; ++i)
if (i % 2 == 0)
printf("even\n");
else if (i % 2 != 0)
printf("odd\n");
else
printf("wow\n");
else
printf("damn it!\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment