Cicode Programming Reference > Using Arrays > Declaring Array Properties

Declaring Array Properties

Arrays have several properties that you need to declare to the compiler along with the array name: data type, size and dimension. You can also set default values for individual elements of the array. An array declaration has the following syntax:

DataType Name[Dim1Size,{Dim2Size},{Dim3Size}]{=Values};

See Also

Using Arrays

Using Cicode Files