Skip to content

Instantly share code, notes, and snippets.

@Cazzar
Created December 24, 2014 03:55
Show Gist options
  • Save Cazzar/f1deb694dd4c09e19fd4 to your computer and use it in GitHub Desktop.
Save Cazzar/f1deb694dd4c09e19fd4 to your computer and use it in GitHub Desktop.
#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