table of contents
other versions
- Tumbleweed 6.16-1.1
- Leap-16.0
- Leap-15.6
| operator(7) | Miscellaneous Information Manual | operator(7) |
NAME¶
operator - C operator precedence and order of evaluation
DESCRIPTION¶
This manual page lists C operators and their precedence in evaluation.
| Operator | Associativity | Notes |
| () _Generic() | - | [1] |
| [] () . -> ++ -- (type){} | left to right | [2] [3] |
| ++ -- & * + - ~ ! _Countof sizeof alignof | right to left | [4] |
| (type) | right to left | |
| * / % | left to right | |
| + - | left to right | |
| << >> | left to right | |
| < > <= >= | left to right | |
| == != | left to right | |
| & | left to right | |
| ^ | left to right | |
| | | left to right | |
| && | left to right | |
| || | left to right | |
| ?: | right to left | |
| = *= /= %= += -= <<= >>= &= ^= |= | right to left | |
| , | left to right |
The following notes provide further information to the above table:
- [1]
- The () at this precedence is the parenthesized expression.
- [2]
- The () at this precedence is the function call operator.
- [3]
- The ++ and -- operators at this precedence level are the postfix flavors of the operators.
- [4]
- The ++ and -- operators at this precedence level are the prefix flavors of the operators.
| 2025-08-19 | Linux man-pages (unreleased) |