There are quite a lot of operators in C and C++, here are the basic ones:
&& - AND
|| - OR
! - NOT
^ - XOR
= - Assign
== - Equal to
!= - Not Equal to
+ - Add
- - Subtract
* -...
The this operator is not a c operator. It is a c++ keyword. It is equivalent to an r-value pointer to the current instance of an object. It is useful when resolving between object members and method...