Chapter 8 - Pointers
Pointer operators & and *.
Pass by Value
Pass a Pointer into a Function
Const value cannot be modified
Const pointer cannot be changed
Least privilege - neither the pointer nor the data can be modified
Selection Sort
Notice the parameters of swap() is "int* const".
sizeof operator
sizeof(data_type)
Array Subscript notation & pointer/offset notation
Function Pointers
(What Does This Code Do?)
ex08_13.cpp
(What Does This Code Do?)
ex08_14.cpp