6.14 Logical Expression Operators |
Except as specified later (For the function call ( )
,
&&
, ||
, ?:
and the comma operators), the order
of evaluation of subexpressions and the order in which side effects
take place are both unspecified.
The order of evaluation of the function designator, the actual arguments, and subexpressions within the actual arguments is unspecified, but there is a sequence point before the actual call.
&& | Logical AND | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|| | Logical OR | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
! | Logical NOT | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6.14 Logical Expression Operators |