Operators | Associativity |
---|---|
( ) [ ] . (member) -> (pointer member) ++ (post) -- (post) | left to right |
(Unary) + (Unary) - ! ~ ++ (pre) -- (pre) & (referenec) * (de-reference) (typecast) sizeof(..) | right to left |
* / % | left to right |
+ - | left to right |
>> << | left to right |
< <= > >= | left to right |
== != | left to right |
& | left to right |
^ | left to right |
| | left to right |
&& | left to right |
|| | left to right |
?: | right to left |
= += -= *= /= %= >>= <<= &= ^= |= | right to left |
, | left to right |
|