What would a recursive function (not from a class) that puts some kind of element (like an integer) into a 2D array look like?
I noticed a 2D array seems to be a bit different from a regular array in a function.
Is the first bracket always empty and the second bracket hold the size?
void Array(int array[][10])
How can you change the value in the different rows and columns recursively? Or even how can you manipulate the rows and columns recursively? I feel as if I NEED the for loop. I couldn't find a model example of this in my book.