xref: /386bsd/usr/share/man/cat7/operator.0 (revision a2142627)
1OPERATOR(7)                 386BSD Reference Manual                OPERATOR(7)
2
3NNAAMMEE
4     ooppeerraattoorr - C operator precedence and order of evaluation
5
6DDEESSCCRRIIPPTTIIOONN
7           Operator                        Associativity
8           --------                        -------------
9           () [] -> .                      left to right
10           ! ~ ++ -- - (type) * & sizeof   right to left
11           * / %                           left to right
12           + -                             left to right
13           << >>                           left to right
14           < <= > >=                       left to right
15           == !=                           left to right
16           &                               left to right
17           ^                               left to right
18           |                               left to right
19           &&                              left to right
20           ||                              left to right
21           ?:                              right to left
22           = += -= etc.                    right to left
23           ,                               left to right
24
25FFIILLEESS
26     /usr/share/misc/operator
27
28HHIISSTTOORRYY
29     The ooppeerraattoorr manual page is currently under development.
30
31BSD Experimental                 July 19, 1991                               2
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67