Evaluation Order Operators — ,
(
)
symbol , symbol
( symbol operator symbol )
symbolAny symbol.
operatorAny operator.
Sequence of operation.
Operations before a , are performed before those
after it.
Operations enclosed by ( and )
are performed first.
Gamma>x = 3;3Gamma>princ("x = ", x, "\n");x = 3 tGamma>(2 + 3) * 4;20Gamma>2 + (3 * 4);14Gamma>