01What does the address-of operator (&) do?
02Which symbol is used to 'dereference' a pointer (access the value at the address)?
03If 'p' is a pointer to an integer, what does 'p++' do?
04What is a 'NULL' pointer?
05Which declaration creates a 'pointer to a constant integer' (the value cannot be changed via the pointer)?