Tables

This book contained a number of tables, and you may not want to go searching through the entire text to find them. We've included the most useful tables here, along with a couple of new ones.

Table B.1. This list of all C operators—including a couple that were not discussed in this book—ranks them from highest precedence to the lowest.
Operator Precedence
OperatorsAssociativity
( ) [] - .Left to right
! -- ++ - + * & {} (type-cast) sizeof (+, - and * are all unary, not arithmetic)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
&= ^= |= <<= >>= 
,Left to right
Table B.2. ...

Get C Programming: Visual Quickstart Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.