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

6.operators

Embed Size (px)

Citation preview

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 ~ >> << ^ & |