Arrays as parameters
When an array name is used as a parameter, the �value� of the parameter is a pointer to its first element.
Therefore, array parameters are always pointers.
The called function refers to the argument array directly. No copy of the array is made.
An & is usually not needed or appropriate for an array argument