C1
a programming technique where the second argument in a logical operation is evaluated only if the first argument does not suffice to determine the value of the expression.
Meanings
a programming technique where the second argument in a logical operation is evaluated only if the first argument does not suffice to determine the value of the expression.
In the expression 'A && B', if A is false, B is not evaluated due to short-circuit evaluation.
Synonyms
Antonyms
Last updated: 2025/01/11 11:58
