11.5 — Multidimensional Arrays
The elements of an array can be of any data type, including arrays! An array of arrays is called a multidimensional array. int array[3][5]; // a 3-element array of 5-element arrays Since we have 2 subscripts, this is a two-dimensional array. In a two-dimensional array, it is convenient to think …