@@ -640,33 +640,43 @@ together in a expression the associativity determines how they are grouped.
640
640
Precedence Operator Description Associativity
641
641
========== ======== ========================================= =============
642
642
1 [] Array subscripting Left-to-right
643
+
643
644
. Structure member access
644
645
---------- -------- ----------------------------------------- -------------
645
- 2 - Unary minus Right-to-left
646
- ~ Bitwise not
646
+ 2 `- ` Unary minus Right-to-left
647
+
648
+ `~` Bitwise not
647
649
---------- -------- ----------------------------------------- -------------
648
- 3 * Multiplication Left-to-right
649
- \ Division
650
+ 3 `* ` Multiplication Left-to-right
651
+
652
+ \\ Division
653
+
650
654
% Remainder
651
655
---------- -------- ----------------------------------------- -------------
652
- 4 + Addition Left-to-right
653
- - Substraction
656
+ 4 `+ ` Addition Left-to-right
657
+
658
+ `- ` Substraction
654
659
---------- -------- ----------------------------------------- -------------
655
- 5 << Bitwise left shift Left-to-right
656
- >> Bitwise right shift
660
+ 5 `<< ` Bitwise left shift Left-to-right
661
+
662
+ `>> ` Bitwise right shift
657
663
---------- -------- ----------------------------------------- -------------
658
664
6 & Bitwise and Left-to-right
659
665
---------- -------- ----------------------------------------- -------------
660
666
7 ^ Bitwise xor Left-to-right
661
667
---------- -------- ----------------------------------------- -------------
662
- 8 | Bitwise or Left-to-right
668
+ 8 ` | ` Bitwise or Left-to-right
663
669
---------- -------- ----------------------------------------- -------------
664
670
9 < Less than Left-to-right
671
+
665
672
<= Less than or equal to
673
+
666
674
> Greater than
675
+
667
676
>= Greater than or equal to
668
677
---------- -------- ----------------------------------------- -------------
669
678
10 == Equal to Left-to-right
679
+
670
680
!= Not equal to
671
681
---------- -------- ----------------------------------------- -------------
672
682
11 not Logical not Right-to-left
0 commit comments