On the problem of logical operators

! a & & b | | c;
ask everyone how to explain this

Jul.11,2022

precedence of logical operators

  Operator precedence  

! Logic reverses
& & Logic and
| | Logic or

priority from high to low, first execute the high priority, an inverts, then the result and b logic and, finally, the previous result and c logic OR.

Menu