0
About multi-dimesional array
This explains better: array[0][0] = 3 array[0][1] = 5 array[0][2] = 8 array[1][0] = 7 array[1][1] = 54 array[1][2] = 1 array[1][3] = 12 array[1][4] = 4 👍👍👌👌
1 Respuesta
+ 1
Do you know about matrix? .. Check this out
3 5 8
7 54 1 12 4
Eg ...... (3) =first row, First column
(5) = first row, second column
(7)= second row, First column
(12)= second row, 4th column
Remember..... Counting start from zero
That mean array[2][3] means row 3 column 4...... Got it!