6.operators

2
Operators What you’ll learn: o Operators used in C

Upload: hardik-gupta

Post on 20-Jul-2015

15 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 6.operators

Operators

What you’ll learn:

o Operators used in C

Page 2: 6.operators

Operators used in C

Type of Operators Operators

Arithmetic + - / * %

Assignment = += -= *= /= %= <<= >>=

Relational >= <= == != > <

Unary + - ++ --

Logical && || !

Conditional ? :

Comma ,

Bitwise ~ >> << ^ & |