Contents|Index|Previous|Next

Operators

The linker recognizes the standard C set of arithmetic operators, with the standard bindings and precedence levels, as the following table clarifies.

Precedence
Associativity
Operators
highest


1
left
-˜!
2
left
*/%
3
left
+-
4
left
>> <<
5
left
== != > < <= >=
6
left
&
7
left
|
8
left
&&
9
left
||
10
right
?:
11
right
&= += -= *= /= §
lowest


   Prefix operators.

§   See Assignment: Defining Symbols.