First page Back Continue Last page Graphics
POINTER ARITHMETIC
If p points to the mth element of an array, the (p+n) points to the (m+n)th element of the array and (p-n) points to the (m-n)th element.
The elements must exist for this reference to work. (And that's the problem with using pointer arithmentic).