Final answer:
When we pass an array to a function, the function receives a copy of the memory address where the array is stored.
Step-by-step explanation:
When we pass an array to a function, the function receives a copy of the memory address where the array is stored. So, the function doesn't receive the actual array, but a pointer to it. This means that any changes made to the array inside the function will affect the original array outside the function.
For example, if we have an array arr and pass it to a function modifyArray(arr), any modifications made to arr inside the modifyArray function will be reflected in the original arr outside the function.