ISO/IEC 9899:1999 defines null pointers as "An integer constant expression with the value 0." In practice, attempting Attempting to dereference a null pointer results in undefined program behavior, typically abnormally program termination. Given this, null pointers should not be dereferenced.
...