Skip to content

Instantly share code, notes, and snippets.

@theJenix
Last active August 29, 2015 14:10
Show Gist options
  • Save theJenix/b56fa322419504ad9e61 to your computer and use it in GitHub Desktop.
Save theJenix/b56fa322419504ad9e61 to your computer and use it in GitHub Desktop.
Bad C
int main(int argc, char **argv) {
short *shortp = 0;
int index = 1;
printf("%X\n", &shortp[index]);
printf("%X\n", &index[shortp]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment