An interesting thing you can do with pointers, is the possibility to have pointers point to pointers. This may seems weird, but it is actually useful. When you want to talk about an array of pointers, or and array of arrays.
To declare a pointer to a pointer you just add more *-operators.
For example