我想在函数中创建一个数组并将其作为参数传递给另一个函数,该函数是从该函数调用的。我怎样才能做到这一点?这是伪代码:
define FuncA (Array Q){
<whatever>
}
define FuncB (n){
make-array myArray = {0,0,....0}; <initialise an array of n elements with zeroes>
FuncA(myArray); <call FuncA from FuncB with myArray as an argument>
}