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
This manual page lists C operators and their precedence in evaluation.
.PP
.nf
.B "Operator Associativity"
() [] \-> . 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
?: right to left
= += \-= *= /= %= <<= >>= &= ^= |= right to left
, left to right
.TS
lb lb
l l.
Operator Associativity
() [] \-> . 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
?: right to left
= += \-= *= /= %= <<= >>= &= ^= |= right to left
, left to right
.TE
.fi
.\"