An uninitialized pointer will point a garbage default memory address. If we don't want the pointer to store a memory address, we can give it a null address.
Remember to put a * before the pointer variable name. To create a null pointer we can either assign 0 or NULL to the pointer.
Note that both cases will return 0.
Whoops, we're not dereferencing here!