Null()
: Test for Null Pointer->
: Dereferencing
*
: Indirection=
*
p *
p =
e Specification: The first form returns the object e stored in the memory block to which p refers. The second form destructively updates this memory block by overwriting its content with e.
Constraint: It is illegal to apply *
to an unbound p.
Complexity: O(1).