Rules of Precedence for Operators
Operator Rule of Precedence Conditional Operators are evaluated first NOT NOT is evaluated first. AND AND is evaluated next. OR, XOR OR and XOR are evaluated last. Note: Operators of equal precedence are evaluated from left to right in the expression.Parentheses can be used to explicitly determine the order of evaluation, overriding the order described…
Read more