Definition
array : [ exp_opt ]
Purpose
An array describes a collection of some number of same-type elements. They are implemented as linear storage space. Arrays with the strict qualifier also store their size and perform bounds checking. Arrays can have a specified size or an unspecified size.
Semantics
The base type of an array must have a fixed size.