There is a shortcut to remember C operator Precedence.
“I” in IS does not represent any operator and used for completion of the sentence.
all operators with associativity not specified is left to right.
B- BitWise ( & > ^ > | ) |
L- Logical ( logical && > logical | ) |
and the last three operators are remembered as TACO as in Mexican Taco:
All except Unary, Assignment and Ternary are Left to Right (AUTO rides in the right, i.e., Assignment, Unary and Ternary are right to left).
Good luck!