OPERATOR(7) MachTen Reference Manual OPERATOR(7)

NAME
operator - C operator precedence and order of evaluation

DESCRIPTION
Operator Associativity
-------- -------------
() [] -> . left to right
! ~ ++ -- - (type) * & 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
= += -= etc. right to left
, left to right

FILES
/usr/share/misc/operator

4.4BSD June 9, 1993 1