Skip to content

Instantly share code, notes, and snippets.

@ericsk
Created June 7, 2009 16:01
Show Gist options
  • Save ericsk/125380 to your computer and use it in GitHub Desktop.
Save ericsk/125380 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int x = 5;
((void)0, x)++;
printf("%d\n", x);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment