0
How are the indexes in an higher dimensional array called?
2 Respuestas
+ 12
Do you want to know how the elements in multidimensional arrays can be accessed?
+ 2
try to visualize a cube as a tridimensional array containing the values of width, height and depth:
cube[column][row][depth];
will be an element of the array placed in the cube according to its coordinates (indexes column, row and depth).