Operators used in C++?
Type | Operators |
Assignment Operator | = |
Compound assignment Operator | +=, -=, *=, /=, %=, >>=, <<=, &=, ^=, |== |
Arithmetic Operator | +,-,*,/,% |
Increment/Decrement Operator | ++,-- |
Relational Operator | ==,>,>=,<,<=,!= |
Logical Operator | &&, ||, ! |
Bitwise Operators | &, |, ^, ~, >>, << |
Conditional Operator | ? |