12.2.1 Declaring a Pointer

This is how a pointer is declared:

 
int * p1; 
int* p2; 
int *p3; 
Str * textPtr; 
5Player * playerPtr;  

As you see, the use of spaces does not matter very much. It is best to choose one notation and stick to it.