c++ #c #비트 #비트연산자
c++ 비트 연산자 이해하기
c++ 비트 연산자 이해하기
2020.10.25#include #include using namespace std; int main() { bitset bit1; bit1.reset(); // 0000 0000 bit1 = 127; // 0111 1111 bitset bit2; bit2.reset(); bit2 = 0x20; // 32 bitset bit3 = bit1 & bit2; bitset bit4 = bit1 | bit2; bitset bit5 = bit1 ^ bit2; bitset bit6 = ~bit1; bitset bit7 = bit2 > 1; cout