Precedence Issue
(multiple operator symbols)
lHow do we ensure that the syntax tree of
a + b*c
looks like this: and not this:
+
c
a
b
*
*
a
c
b
+