Pointers
A pointer is an address of a memory cell.
How to declare a pointer variable?
* is referred to a “pointer-to” operator.
We say “Sample is a char pointer”
It is a good programming style to “stick” the * to the type in pointer declarations.
Other variations: char * Sample;