Skip to content

Instantly share code, notes, and snippets.

@Bigcheese
Created September 16, 2016 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bigcheese/f74fa7b0f4cc191b752ef95707f2fc27 to your computer and use it in GitHub Desktop.
Save Bigcheese/f74fa7b0f4cc191b752ef95707f2fc27 to your computer and use it in GitHub Desktop.
int main() {
int b = 42;
int *p = &b;
{
int a = 1;
p = &a;
}
return *p;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment