Fixed-length Array Declarations
This section explains the fixed-length array declarations.
Fixed-length array declarations are like C array declarations,
as follows:
fixed-array-declaration:
type-ident variable-ident "[" value "]"
An example of a fixed-length array declaration is:
colortype palette[8]; --> colortype palette[8]