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