Operator | Description |
---|---|
id++ |
post-increment of the
variable id (not required by POSIX(r)) |
id-- |
post-decrement of the
variable id (not required by POSIX(r)) |
++id |
pre-increment of the
variable id (not required by POSIX(r)) |
--id |
pre-decrement of the
variable id (not required by POSIX(r)) |
+ |
unary plus |
- |
unary minus |
|
conditional (ternary) operator |
|
expression list |
( |
subexpression (to force precedence) |