A pointer is a variable that stores the memory location just like int stores integers and string stores sequences of characters.

To declare a pointer, we use the type of the variable it points to and put an * before the variable name.

Good work! Remember to give the pointer the same type as the variable it points to.