Skip to content

Instantly share code, notes, and snippets.

@hazelybell
Created October 18, 2015 17:56
Show Gist options
  • Save hazelybell/6e9a31d262ffa1ed7865 to your computer and use it in GitHub Desktop.
Save hazelybell/6e9a31d262ffa1ed7865 to your computer and use it in GitHub Desktop.
int main(int argc, char ** argv) {
(void) argc;
(void) argv;
int a[2] = {1, 3};
int * p = &(a[0]);
*(++p) = (*p)++;
return 10 * a[0] + a[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment