]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/misc/operator
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / share / misc / operator
1 Operator                                Associativity
2 -----------------------------------------------------
3 () [] -> .                              left to right
4 ! ~ ++ -- - (type) * & sizeof           right to left
5 * / %                                   left to right
6 + -                                     left to right
7 << >>                                   left to right
8 < <= > >=                               left to right
9 == !=                                   left to right
10 &                                       left to right
11 ^                                       left to right
12 |                                       left to right
13 &&                                      left to right
14 ||                                      left to right
15 ?:                                      right to left
16 = += -= *= /= %= <<= >>= &= ^= |=       right to left
17 ,                                       left to right
18
19 $FreeBSD$