Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- server
- BASIC
- graph
- 따라하면서 배우는 C언어
- String
- C
- udemy
- 인프런
- 따배씨
- Cleancode
- web
- 종만북
- JavaScript
- Math
- Python
- BOJ
- php
- 따라하며 배우는 C언어
- Algospot
- 생활코딩
- 정수론
- programmers
- greedy
- C언어
- Algorithm
- sorting
- dfs
- DP
- 백준
- BFS
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 15.4 비트 단위 논리 연산자 확인해보기 본문
따배씨 - 따라하며 배우는 C언어
15강 비트 다루기
15.4 비트 단위 논리 연산자 확인해보기
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
unsigned char to_decimal(const char bi[]);
void print_binary(const unsigned char num);
int main()
{
/*
Regular Logical Operators : &&, ||, and !
bool have_apple = true;
bool like_apple = true;
if (have_apple && like_apple)
eat_apple();
Bitwise Logical Operators :
- Bitwise NOT ~
- Bitwise AND &
- Bitwise OR |
- Bitwise EXCLUSIVE OR ^
*/
unsigned char a = 6;
unsigned char b = 5;
printf("%hhu\n", a);
print_binary(a);
// 6
// Decimal 6 == Bianry 00000110
printf("%hhu\n", b);
print_binary(b);
// 5
// Decimal 5 == Bianry 00000101
printf("%hhu\n", a & b);
print_binary(a & b);
// 4
// Decimal 4 == Bianry 00000100
printf("%hhu\n", a | b);
print_binary(a | b);
// 7
// Decimal 7 == Bianry 00000111
printf("%hhu\n", a ^ b);
print_binary(a ^ b);
// 3
// Decimal 3 == Bianry 00000011
printf("%hhu\n", ~a);
print_binary(~a);
// 249
// Decimal 249 == Bianry 11111001
return 0;
}
unsigned char to_decimal(const char bi[])
{
const size_t L = strlen(bi);
unsigned char sum = 0;
for (size_t i = 0; i < L; i++)
{
if (bi[i] == '1')
sum += (int)pow(2, L - 1 - i);
}
return sum;
}
void print_binary(const unsigned char num)
{
printf("Decimal %3d \t== Bianry ", num);
const size_t bits = sizeof(num) * 8;
for (size_t i = 0; i < bits; i++)
{
const unsigned char mask = (unsigned char)pow((double)2, (double)(bits - 1 - i));
if ((num & mask) == mask)
// 2진 수의 자리수를 검사하는 mask 변수를 만들어 이진수의 자리수 bit 연산
printf("%d", 1);
else
printf("%d", 0);
}
printf("\n");
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 15.6 비트단위 쉬프트 연산자 (0) | 2021.07.23 |
---|---|
[따배씨] 15.5 2의 보수 표현법 확인해보기 (0) | 2021.07.23 |
[따배씨] 15.3 &를 이용하는 십진수 -> 이진수 연습 문제 (0) | 2021.07.21 |
[따배씨] 15.2 이진수를 십진수로 바꾸기 연습문제 (0) | 2021.07.20 |
[따배씨] 15.1 비트단위 논리 연산자 (0) | 2021.07.20 |
Comments