| Term | Definition |
| array | a series of elements of the same type placed in continuous memory locations that can be individually referenced by adding an index to a unique identifier |
| type name [elements] | declaration of an array |
| type name [elements] = {value1, value2, ...}; | initialization of an array |
| name[index] | access to an element of any array |
| type name [elements1] [elements2] | declaration of a multidimensional array |
| void name (type name []) | an array as a function parameter |
| void name (type name [][depth][depth]) | multidimensional array as a function parameter |