C Programming
C Programming
Operators Symbols
Arithmetic +,-,*,/,%(Modulus)
Logical Or(||) , and (&&) , Not(!)
Relational ==,<=,>=,!=,>,<
Increment ++ (pre ++variable) (post variable++)
Decrement --(pre --variable) (post variable--)
Assignmen =
t
Bitwise Or(|),and(&),not(~),exor(^),right shift(>>), left
shift(<<)
Address &
Data *
Colon :