Manual Reference Pages  - OPERATOR (7)

NAME

C operator - C operator precedence and order of evaluation

CONTENTS

Description

DESCRIPTION

This manual page lists C operators and their precedence in evaluation.


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
 
Jump to page    or go to Top of page |  Section 7 |  Main Index.


August 24, 2003 OPERATOR (7)
Generated by manServer 1.07 from /usr/share/man/man7/operator.7.gz using doc macros.