+ 1
Can arrays be nested in functions
Nested arrays in functions
3 ответов
+ 2
They can be nested as you like it; but if you pass for example a 2-dimensional array as an argument, the 'rows' size must be given at function definition.
int f(int x[][5]) {...}
+ 1
I don't understand your question, please reframe it, so that you can get your desired answer
edited: this is also known as multi dimensional array
+ 1
Thanks