비트(9)
-
Ex13-비트단위 << 연산, 비트단위 >> 연산
비트단위 > 연산 소스코드 int main(void) { int num1=10; // 00001010 int result1; result1 = num1
-
Ex12-비트연산자
비트연산자 비트 단위 AND 연산, 비트 단위 OR 연산, 비트 단위 XOR 연산, 비트 단위 NOT 연산 &연산자 vs 주소연산자 피연산자사이의 & &연산자 변수앞의 & 주소연산자 소스코드 #include int main(void) { int a=12; // 128 64 32 16 8 4 2 1 // 0 0 0 0 1 1 0 0 int b=20; // 128 64 32 16 8 4 2 1 // 0 0 0 1 0 1 0 0 int result1, result2, result3, result4; result1 = a & b; // 128 64 32 16 8 4 2 1 // 0 0 0 0 1 1 0 0 // 0 0 0 1 0 1 0 0 //---------------------- // 0 0 0 0 0 1 ..
-
비트 (bit)
비트 컴퓨터는 모든 정보를 0과 1로 표현 비트(Bit)는 2진수 값 하나(0 또는 1)를 저장할 수 있는 최소 메모리 공간 1바이트(byte)는 8비트(bit) 1bit2bit3bit4bit5bit6bit7bit8bit9bitnbit21 = 222 = 423 =824 = 16 25 =3226 = 6427 = 12828 = 25629 = 5122n =n