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
- BOJ
- Cleancode
- server
- 따배씨
- C언어
- 정수론
- 생활코딩
- 백준
- JavaScript
- BASIC
- greedy
- sorting
- programmers
- 인프런
- 따라하면서 배우는 C언어
- C
- graph
- String
- Math
- Algospot
- dfs
- web
- udemy
- BFS
- php
- 따라하며 배우는 C언어
- Algorithm
- 종만북
- Python
- DP
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 15.5 2의 보수 표현법 확인해보기 본문
따배씨 - 따라하며 배우는 C언어
15강 비트 다루기
15.5 2의 보수 2's Complement 표현법 확인해보기
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
void print_binary(const char num);
int main()
{
/*
Signed Integers
- Sign-magnitude representation
00000001 is 1 and 10000001 is -1
00000000 is +0, 10000000 is -0
Two zeros +0, -0, from -127 to +127
- One's complement method
To reverse the sign, invert each bit.
00000001 is 1 and 11111110 is -1.
11111111 is -0
from -127 to +127
*/
print_binary(127);
// Decimal 127 == Bianry 01111111
print_binary(-127);
// Decimal -127 == Bianry 10000001
print_binary(~127 + 1);
// Decimal -127 == Bianry 10000001
print_binary(12);
// Decimal 12 == Bianry 00001100
print_binary(-12);
// Decimal -12 == Bianry 11110100
print_binary(~12 + 1);
// Decimal -12 == Bianry 11110100
return 0;
}
void print_binary(const char num)
{
printf("Decimal %3d \t== Bianry ", num);
const size_t bits = sizeof(num) * 8;
for (size_t i = 0; i < bits; i++)
{
const char mask = (char)pow((double)2, (double)(bits - 1 - i));
if ((num & mask) == mask)
printf("%d", 1);
else
printf("%d", 0);
}
printf("\n");
}
'Language > C' 카테고리의 다른 글
[따배씨] 15.7 비트단위 연산자의 다양한 사용법 (0) | 2021.07.25 |
---|---|
[따배씨] 15.6 비트단위 쉬프트 연산자 (0) | 2021.07.23 |
[따배씨] 15.4 비트 단위 논리 연산자 확인해보기 (0) | 2021.07.21 |
[따배씨] 15.3 &를 이용하는 십진수 -> 이진수 연습 문제 (0) | 2021.07.21 |
[따배씨] 15.2 이진수를 십진수로 바꾸기 연습문제 (0) | 2021.07.20 |
Comments