![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.06.05 > Chapter 5 Expressions
and Operators ![]() Operator Precedence |
|
Precedence is the order in which the compiler groups operands with operators. The C compiler evaluates certain operators and their operands before others. If operands are not grouped using parentheses, the compiler groups them according to its own rules. The following lists C operator precedence in highest to lowest precedence: Table 5-14 C Operator Precedence
Most operators group from the left to the right but some group from the right to the left. The grouping indicates how an expression containing several operators of the same precedence will be evaluated. Left to right grouping means the expression a/b * c/d behaves as if it had been written: (((a/b)*c)/d) Likewise, an operator that groups from the right to the left causes the expression a = b = c to behave as if it had been written: a = (b = c) |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|