Download pdf - 6.operators

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


Recommended