.

dividefirm@gmail.com

Operator Precedence

Consider the following statement: X = 5 + 30 * 10 x will store 305. In this equation, the numbers 30 and 10are multiplied first, and the number 5 is added to their product. Multiplication, division and modulus have higher order than addition and subtraction, which means that they’re performed first. If two operators sharing…

Read More