##AIM:To study bitwise operators in C++'
##THEORY:
Bitwise operators are characters that represent actions (bitwise operations) to be performed on single bits. They operate at the binary level and perform operations on bit patterns that involve the manipulation of individual bits. Bitwise operators supported by C++ are:-
1.'&'- AND operator
2.'|'-OR operator
3.'<<' and '>>' - Shift operators
4.'^' - XOR operators
5.'~'- Complement operators
##OUTPUTS