What is the difference between a 2D array and an array of arrays?
I have read comments, such as @Dave's, that seem to differentiate between the two.
This breaks if he's using 2d arrays, or pointer-to-array types, rather than an array of arrays. – Dave
I always thought that both referred to:
int arr_arr[][];
EDIT: @FutureReader, you may wish to see How do I use arrays in C++?
See Question&Answers more detail:os