First page Back Continue Last page Graphics
Pointers and const
Be sure to read over this so you can use all the useful versions of this
- pointers to a constant (can't use pointer to change the value) From the “pointers point of view”
- const pointer to a variable (can't change what the pointer points to)
The purpose of all this (pg 268-271) is to prevent you from shooting yourself in the foot!