previous | index | next

Multidimensional Arrays

To declare a 2-dimensional array (table) of 100 integers:
  int table[10][10];
The table array is declared to have 10 rows and 10 columns (metaphorically).
         

previous | index | next