Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo C - Norton Guide http://www.X-Hacker.org [^^Up^^] [Menu] [About The Guide]
 precedence       Precedence of Expressions in C
 Conversions      Usual Arithmetic Conversions
 .                Structure Member Operator
 ->               Indirect Structure Field Reference Operator
 ++               Increment Operator (prefix and postfix)
 --               Decrement Operator (prefix and postfix)
 sizeof           Size of Variable or Type (unary)
 ~                Bitwise NOT operator (unary)
 !                Logical NOT operator (unary)
 &                Address (unary);        Bitwise AND (binary)
 *                Indirection (unary);    Multiplication (binary)
 /                Division operator
 +                Identity (unary);       Addition (binary)
 -                Negation (unary);       Subtraction (binary)
 <<               Bitwise Shift Left
 >>               Bitwise Shift Right
 ==               Equality operator
 !=               Inequality operator (Not Equal)
 <                Less Than operator
 >                Greater Than operator
 <=               Less than or Equal to operator
 >=               Greater Than or Equal To
 ^                Bitwise Exclusive OR operator (XOR)
 |                Bitwise OR operator
 &&               Logical AND operator
 ||               Logical OR operator
 ? :              Conditional operator (ternary)
 =                Assignment operator
 op=              Compound Assignment operator
 ,                Expression evaluation
 %                Modulus operator

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson