ld: Operators

1 
1 3.10.6 Operators
1 ----------------
1 
1 The linker recognizes the standard C set of arithmetic operators, with
1 the standard bindings and precedence levels:
1      precedence      associativity   Operators                Notes
1      (highest)
1      1               left            !  -  ~                  (1)
1      2               left            *  /  %
1      3               left            +  -
1      4               left            >>  <<
1      5               left            ==  !=  >  <  <=  >=
1      6               left            &
1      7               left            |
1      8               left            &&
1      9               left            ||
1      10              right           ? :
1      11              right           &=  +=  -=  *=  /=       (2)
1      (lowest)
1    Notes: (1) Prefix operators (2) ⇒Assignments.
1