Skip to content

Instantly share code, notes, and snippets.

@iley
Created October 28, 2010 11:27
Show Gist options
  • Save iley/651156 to your computer and use it in GitHub Desktop.
Save iley/651156 to your computer and use it in GitHub Desktop.
int main(int argc, const char *argv[])
{
int x;
x = 2 //**/ 2
;
if(x == 1) printf("C89\n");
else {
x = 2 /* &x // */
;
if(x == 2) printf("C++ or C99\n");
else printf("CMagic\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment