| Rev | Author | # | Line |
|---|---|---|---|
| 1 | CraigBox | 1 | A [Pointer] that points to memory location 0; ie, nothing. |
| 2 | |||
| 3 | Used to signify the end of a LinkedList in the same way a \0 is used to signify the end of a [String] in [C]. | ||
| 4 | |||
| 5 | [Java] throws null pointer exceptions when you try and reference the thing a null pointer points to (ie, try and access the memory at location 0). C will normally SegmentationFault. |