C++11
Note: in all the following, the existence of the C++11 constant nullptr is assumed. For earlier versions, replace nullptr with NULL, the constant that used to play a similar role.
Creating a pointer variable
A pointer variable can be created using the specific * syntax, e.g. int *pointer_...