| Some thing on arithmetic expressions |
Arithmetic expressions can be large and complex with
several variables, constants, and operators.
The order in which operations are performed is the same as in mathematics (multiplication
and division first, then addition and subtraction, working from left to right).
To avoid confusion, good programmers keep their expressions as simple
as possible and use parenthesis for clarity. |
|