O.2 — Bitwise operators
The bitwise operators C++ provides 6 bit manipulation operators, often called operators: Operator Symbol Form The operation returns a value where: left shift << x << n the bits from x are shifted left by n positions, new bits are 0. right shift >> x >> n the bits from …