Sign Up
Precedence order of some operator
( ) > * > . > +
Example: a*. b + c it has solved by two ways:
In that case we use precedence to avoid ambiguity: ((a*.b) + c)
Another Precedence
Example:
It has solved in two ways,