Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 989 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 989 Bytes

Bitwise-Operators-in-C-

##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

bitwise(or_and)-Screenshot 2023-10-01 115158
bitwiseshift-Screenshot 2023-10-01 115226
set_reset-Screenshot 2023-10-01 115313