Operator Precedence
nIf i1 = 10, what is the order
of evaluation in i1 + 10 * 2?
nUnary + and – have higher
precedence than the binary operators.
n*, /, % have higher
precedence than the binary operators +,-.
nIf two operators have equal precedence, operations are performed left to right. i.e. 10 / 5 * 3 = 6
nParentheses are used to override precedence. i.e. 10 / ( 5 * 3)