More precisely, a pointer that points to NULL, or points to the address of 0x00000000. If you try to assign data to the value of a null pointer like this:

char *blah = NULL;
*blah = 'a';

You will usually get a GPF.