Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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 abnormal program termination. Given this, null pointers should not be dereferenced.

...