Created
September 16, 2016 11:34
-
-
Save Bigcheese/f74fa7b0f4cc191b752ef95707f2fc27 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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