previous | index | next

Multidimensional Arrays

To access a table element, give both a row and column index:
  table[0][0]     element in first row and first column
   ...
  table[9][9]     element in tenth row and tenth column
         

previous | index | next