Chapter 7: Problem 69
When an array is passed to a function, the function has access to the original array.
Short Answer
Expert verified
Answer: When an array is passed to a function, it is passed by reference, which means the function receives a reference (memory address) to the original array instead of a copy of its elements. This allows the function to access and modify the original array directly.