Was this helpful?
&&
This is the logical AND operator. In comparison expressions, it will evaluate to true if the value on the left of the operator and the value on the right of the operator evaluates to true.
Example
while (j < 5 && error == 0)
{ perform statements...}
For more information on how functions and statements participated in this example, see “While...Wend Statement”, “< Operator”, and “== Operator” in the RIFL Programmer’s Reference Guide.
Last modified date: 02/09/2024