Skip to content

Instantly share code, notes, and snippets.

@lykkin
Created January 12, 2015 19:42
Show Gist options
  • Save lykkin/03b56159d948b569def6 to your computer and use it in GitHub Desktop.
Save lykkin/03b56159d948b569def6 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char *argv[]){
int x = 1;
x += x++ + ++x;
printf("%i", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment