Precedence
l Operator      Associativity
l ()       Left to right
lunary: ++   --   !   +   -  (cast)              Right to left
l *      /      %       Left to right
l  +     -       Left to right
l <     <=     >     >=       Left to right
l ==   !=     &       Left to right
l ^       Left to right
l |       Left to right
l &&       Left to right
l ||       Left to right
l ? :       Right to left
l =     +=     -=     *=     /=       Right to left
l