Multidimensional Arrays
Array is a two or more dimensions in C. A Two-dimensional array is a collection of arrays. A three-dimensional array is an array
of group arrays of arrays.
In C programming an array can have 2D, 3D, or even ten or more dimensions. The maximum dimensions of a C program can have depends on which compiler is being used.
More dimensions in an array means collection of arrays more data be held, but also means greater difficulty in managing and understanding arrays.
In C programming an array can have 2D, 3D, or even ten or more dimensions. The maximum dimensions of a C program can have depends on which compiler is being used.
More dimensions in an array means collection of arrays more data be held, but also means greater difficulty in managing and understanding arrays.