First page Back Continue Last page Graphics
Pointer Arithmetic
Since a pointer is a normal variable you can perform arithmetic.
Multiplication of two addresses and division of two addresses doesn't mean anything.
But, subtraction and addition do have meaning.
* my_array points to my_array[0].
my_array++; // increment the pointer
* my_array now points to my_array[1].