✏️ Explanatory Question

Describe how arrays can be passed to a user defined function

👁 1,210 Views
📘 Detailed Answer
💡

Answer with Explanation

One thing to note is that you cannot pass the entire array to a function. Instead, you pass to it a pointer that will point to the array first element in memory. To do this, you indicate the name of the array without the brackets.