Skip to content

Instantly share code, notes, and snippets.

@brimston3
Created April 26, 2016 14:24
Show Gist options
  • Save brimston3/42ab8c6e9bb5e03184f2e91e67f3a422 to your computer and use it in GitHub Desktop.
Save brimston3/42ab8c6e9bb5e03184f2e91e67f3a422 to your computer and use it in GitHub Desktop.
#include "stdio.h"
// Only for extremely evil people
#undef NULL
#define NULL 7
int main()
{
printf("%d\n", NULL);
return 0;
}
#if 0
brimston3@digcraft:~/test$ gcc undef_null.c
brimston3@digcraft:~/test$ ./a.out
7
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment