write short note on multi - dimensional array
Answers
Answered by
4
Answer:
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). ... Two for loops are used for the 2D array: one loop for the rows, the other for the columns.
Answered by
1
Explanation:
A multi-dimensional array is an array that has more than one dimension. It is an array of arrays; an array that has multiple levels. The simplest multi-dimensional array is the 2D array, or two-dimensional array. It's technically an array of arrays, as you will see in the c
Similar questions