|
|
|
|
- Reason
- Correction
- Example
- Declaring an array
Error 113: Non-dynamic array without definition
You are defining an array variable without specifying the elements of this array. Fill the syntax for array declaration by specifying the array dimensions and the type of array elements.
Remark: To use a dynamic array, add the DYNAMIC keyword during the declaration of the array. Declaring an array Code triggering the error Possible corrections Specify the dimensions of the array.
Arr_TO is array of 10 by 10 reals
Use the DYNAMIC keyword to indicate that the array is a dynamic array. The dimensions will be defined in the code by Dimension.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|