#include <stdio.h>
int main() {
unsigned char input; // 0000 0011
unsigned char b = 6; // 0000 0110
scanf("%hhu", &input);
unsigned char c = input & b;
unsigned char d = input | b;
unsigned char e = input ^ b;
unsigned char f = ~ input;
c = input & b;
d = input | b;
e = input ^ b;
f = ~ input;
printf("%d %d %d %d", c, d , e, f);
return 0;
}
'C' 카테고리의 다른 글
자료형(type) (0) | 2020.07.22 |
---|---|
컴파일 컴파일러 (0) | 2020.07.21 |
값 입력받은 후 1부터 그 값까지 합 출력 (0) | 2020.07.18 |
구구단 for, while 둘 다 사용 (0) | 2020.07.18 |
Q.printf("나머지 : "); printf("a % b = %d", a % b);% 1개만 써도 결과가 나오는데 1개만 써도 되는건가요? (0) | 2020.07.12 |