<<< More Relational Operators | Index | Arithmetic If >>> |
Immutable property of all C++ operators
There are two types of associativity,
right-to-left associativity:
assignment operator:
a = b = c is interpreted as a = ( b = c )
unary operators:
!!b is interpreted as !( !b )
left-to-right associativity:
arithmetic and other binary operators:
a + b + c is interpreted as ( a + b ) + c
<<< More Relational Operators | Index | Arithmetic If >>> |