operator.7: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-08-20 12:04:21 +02:00
parent 3122cbdee8
commit d47991cc90
1 changed files with 20 additions and 17 deletions

View File

@ -43,22 +43,25 @@ operator \- C operator precedence and order of evaluation
.SH DESCRIPTION .SH DESCRIPTION
This manual page lists C operators and their precedence in evaluation. This manual page lists C operators and their precedence in evaluation.
.PP .PP
.nf .TS
.B "Operator Associativity" lb lb
() [] \-> . left to right l l.
! ~ ++ \-\- + \- (type) * & sizeof right to left Operator Associativity
* / % left to right () [] \-> . left to right
+ \- left to right ! ~ ++ \-\- + \- (type) * & sizeof 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
| left to right & left to right
&& left to right ^ left to right
|| left to right | left to right
?: right to left && left to right
= += \-= *= /= %= <<= >>= &= ^= |= right to left || left to right
, left to right ?: right to left
= += \-= *= /= %= <<= >>= &= ^= |= right to left
, left to right
.TE
.fi .fi
.\" .\"