C++ functions that process arrays need to be informed about
The kind of data in the array
The location of the beginning of the array
And the number of elements in the array
The traditional C/C++ approach to functions that process arrays
Is to pass a pointer to the start of the array as one argument
And to pass the size [...]