If I remember correctly most compilers define NULL like this:
#define NULL ((void*)0)
This is to ensure that NULL is interpreted as being a pointer type.
As an aside, I believe C++x0 now defines a nullptr keyword to represent null pointers. Visual C++ 2005's CLI/C++ compiler also uses this keyword when setting managed pointers to null. In current compilers you can create a template to emulate this new keyword.
There is an article on [wikibooks.org][1] discussing it.
[1]: http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/nullptr