List of Operators in C++

Operators used in C++?

Explanation

Operators are special symbols that perform some specific operations using the operands on either side of this operator to give a result.

List of C++ Operators:


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

C++ Tutorial


Ask Questions

Ask Question