Created
December 24, 2014 03:55
-
-
Save Cazzar/f1deb694dd4c09e19fd4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <stdio.h> | |
int main() | |
{ | |
int ae1 = 0xDEADBEEF; | |
printf("%d", ae1); | |
*(&ae1) = NULL; | |
printf("%d", ae1); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment