When in C++ I declare a null pointer to be int* p=0, does that mean the zero is some special constant of integer pointer type, or does it mean that p
int* p=0
p
It means that it's not pointing to anything.