c Language

Post on 25-Dec-2015

220 views 3 download

Tags:

description

Useful for students

Transcript of c Language

Summary of C Operators

1, Parenthesis, unary (+,-), Increment and Decrement, Logical negotiation (!), Complement (~), Pointer (*), Address (&), sizeof, typecast.

2, Arithmetic Operators

3, Left and Right shift

4, Relational Operators

5, Bitwise Operators

6, Logical Operators

7, Assignment Operators

8, Comma Operator

big=(a>b&&a>c?a:b>c?b:c);