💾 Archived View for pantasya.mooo.com › cfun › book › 02_Body_Matter › 01_Essentials › 09_Operator_P… captured on 2023-09-08 at 16:14:41. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Operator Precedence

Operator Precedence:

Category          Operator                            Associativity

Postfix           () [] -> . ++ - -                   Left to right
Unary             + - ! ~ ++ - - (type)* & sizeof     Right to left
Multiplicative    * / %                               Left to right
Additive          + -                                 Left to right
Shift             << >>                               Left to right
Relational        < <= > >=                           Left to right
Equality          == !=                               Left to right
Bitwise AND       &                                   Left to right
Bitwise XOR       ^                                   Left to right
Bitwise OR        |                                   Left to right
Logical AND       &&                                  Left to right
Logical OR        ||                                  Left to right
Conditional       ?:                                  Right to left
Assignment        = += -= *= /= %=>>= <<= &= ^= |=    Right to left
Comma             ,                                   Left to right