Skip to content

Instantly share code, notes, and snippets.

@mr1337357
Created September 14, 2014 07:13
Show Gist options
  • Save mr1337357/b31951cd34544aa568c0 to your computer and use it in GitHub Desktop.
Save mr1337357/b31951cd34544aa568c0 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
const int x=5;
int y=6;
(&y)[1]=4;
printf("%d\n",x);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment