Manual Page Result
0
Command: operator | Section: 7 | Source: NetBSD | File: operator.7
OPERATOR(7) FreeBSD Miscellaneous Information Manual OPERATOR(7)
NAME
operator - C and C++ operator precedence and associativity
DESCRIPTION
Operator Associativity
() [] -> . left to right
! ~ ++ -- - (type) * & sizeof new delete 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
?: right to left
= += -= *= /= %= <<= >>= &= ^= |= throw right to left
?: (C++, third operand) right to left
, left to right
FILES
/usr/share/misc/operator
SEE ALSO
iso646(3)
FreeBSD 14.1-RELEASE-p8 January 18, 2011 FreeBSD 14.1-RELEASE-p8