https://www.geeksforgeeks.org/bitwise-operators-in-c-cpp/

Definitions

Unary: requires only 1 operand Binary: requires 2 operands Ternary: requires 3 operands Nullary: requires 0 operands

Unary

operatorlink
-
++
!
&C Addresses
sizeof()sizeof()
~Ones Complement

Binary

Arithmetic
operatorlink
+
-
*
/
%
Relational
operatorlink
<
>
>=
==
!=
Logical
operatorlink
&&
||
Bitwise
Assignment Operators
operatorlink
=
+=
-=
*=
/=
%=

Ternary

operatorlink
?:Conditional Operator

Nullary

operatorlink
throwsthrow