Next: , Previous: , Up: Operators   [Index]


6.4 Binary Operators Precedence Table

OperatorAssociativity
[]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
||Left to right
=Right to left
+=
-=
*=
/=
%=
&=
^=
|=
<<=
>>=

aime operator precedence is identical with that of the C programming language.