Point of Views of Multidimensional Array
You can think of one dimensional array as a vector, and two dimensional array as a matrix (only the index starts from 0).
You can view a multidimensional array as (one-dimensional) array of array. For example, t[12][50] is an array t[12], each of them is an array of 50 elements.