Here is the complete fist:
Priority | Operator | |
1 | - | Unary minus |
+ | Unary plus | |
NOT | Logical NOT | |
FN | Functions | |
() | Brackets | |
?!$ | Indirection operators | |
2 | ^ | Raise to the power |
3 | * | Multiplication |
/ | Division | |
DIV | Integer division | |
MOD | Integer remainder | |
4 | + | Addition |
- | Subtraction | |
5 | = | Equal to |
<> | Not equal to | |
< | Less than | |
> | Greater than | |
<= | ess than or equal to | |
>= | Greater than or equal to | |
6 | AND | Logical and bitwise |
7 | OR | Logical and bitwise |
EOR | Logical and bitwise Exclusive OR |