List the precedence table?
At last let's add the &&, ||, &, | and ? operators to the precedence table
- *, /, % Multiplicative operators
- +, - Additive operators
- <, >, >=, <= Relational operators
- ==, != Then do any comparisons for equality and inequality
- & Bitwise and
- | Bitwise or
- && Logical and
- || Logical or
- ? : Conditional operator
- = Assignment operator