Arrays are not compatible

This run-time error is reported whenever a formula assigns one array to another, and the size of the arrays does not match. Example:

int a[10]
int b[@myParam]  ; Suppose that myParam is 11
int c[@myParam]
c = b  ; ok
a = b  ; error

To correct it, change the declaration of one of the arrays.

Note: Run-time errors are reported only when the DEBUG symbol is defined. See Debugging.

See Also
Arrays
Errors