Message: '<operator>' needs at least '<number of operands>' operands
Possible error cause: Too few operands are assigned to an operator.
Error correction: Assign the required number of operands to the operator.
Example of the error:
PROGRAM PLC_PRG VAR i : INT; END_VAR i := MUX(30,40); --> C0023: 'MUX' needs at least '3' operands
Error correction:
Example: i := MUX(30,40,50);