Const Pointers and Arrays
A parameter that is a pointer or array may include the const keyword, as shown here:
const Type_name* var_name
const Type_name var_name[]
The functions may examine the item that is pointed to or the array, but changing the item or the array is prohibited (p. 152 text).