+ 2
Does anyone know what is "Multidimensional Array" in 'c++' . I am confused with this đđ
1 Answer
+ 3
A multi-dimensional array is an array with more than one level or dimension. For example, a 2D array, or two-dimensional array, is an array of arrays, meaning it is a matrix of rows and columns (think of a table). A 3D array adds another dimension, turning it into an array of arrays of arrays.