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
- C
- Algorithm
- 따배씨
- 백준
- 정수론
- server
- programmers
- php
- dfs
- greedy
- BASIC
- DP
- BFS
- 따라하며 배우는 C언어
- JavaScript
- 따라하면서 배우는 C언어
- String
- sorting
- C언어
- graph
- Algospot
- Math
- web
- Python
- 종만북
- 인프런
- 생활코딩
- udemy
- BOJ
- Cleancode
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 15.6 비트단위 쉬프트 연산자 본문
따배씨 - 따라하며 배우는 C언어
15강 비트 다루기
15.6 비트단위 쉬프트 Shift 연산자
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
void int_binary(const int num);
int main()
{
/*
Bitwise shift operators
- Left shift
number << n : multiply number by 2^n
- Right shift
number >> n : divede by 2^n (for non-negative numbers)
*/
// 8 bit integer cases
//
printf("%hhd\n", 1 << 3);
// 00000001 -> 00000001??? -> 00001000
// 8
printf("%hhd\n", 8 >> 1);
// 00001000 -> ?00001000 -> 00000100
// 4
printf("%hhd\n", -119 >> 3);
// 10001001 -> ???10001001 -> 11110001
// -15
printf("%hhd\n", -119 << 4);
// 10001001 -> 10001001???? -> 10010000
// -112
// unsigned
printf("%hhd\n", 137 >> 3);
// 10001001 -> ???10001001 -> 00010001
// 17
printf("%hhd\n", 137 << 4);
// 10001001 -> 10001001???? -> 10010000
// -112
// singed 인 경우 right shift 의 경우 기계마다 다르지만, 주로 1로 채우게 됨
int a = 1;
a <<= 3;
a >>= 2;
printf("Unsigned int %u\n", 0xffffffff);
// Unsigned int 4294967295
printf("Signed int %d\n", 0xffffffff);
// Signed int -1
int_binary(0xffffffff);
// Decimal -1 == Bianry 11111111111111111111111111111111
printf("Right shift by 3\n");
// Right shift by 3
int_binary((signed)0xffffffff >> 3);
// Decimal -1 == Bianry 11111111111111111111111111111111
int_binary((unsigned)0xffffffff >> 3);
// Decimal -1 == Bianry 11111111111111111111111111111111
printf("\nUnsigned int %u\n", 0x00ffffff);
// Unsigned int 16777215
int_binary(0x00ffffff);
// Decimal 16777215 == Bianry 00000000111111111111111111111111
printf("Right shift by 3\n");
// Right shift by 3
int_binary((signed)0x00ffffff >> 3);
// Decimal 2097151 == Bianry 00000000000111111111111111111111
int_binary((unsigned)0x00ffffff >> 3);
// Decimal 2097151 == Bianry 00000000000111111111111111111111
return 0;
}
void int_binary(const int num)
{
printf("Decimal %3d \t== Bianry ", num);
const size_t bits = sizeof(num) * 8;
for (size_t i = 0; i < bits; i++)
{
const int mask = 1 << (bits - 1 - i);
// bit 연산자를 이용하여 mask 를 만듬, 더 효율적
if ((num & mask) == mask)
printf("%d", 1);
else
printf("%d", 0);
}
printf("\n");
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 15.8 RGBA 색상 비트 마스크 연습문제 (0) | 2021.07.25 |
---|---|
[따배씨] 15.7 비트단위 연산자의 다양한 사용법 (0) | 2021.07.25 |
[따배씨] 15.5 2의 보수 표현법 확인해보기 (0) | 2021.07.23 |
[따배씨] 15.4 비트 단위 논리 연산자 확인해보기 (0) | 2021.07.21 |
[따배씨] 15.3 &를 이용하는 십진수 -> 이진수 연습 문제 (0) | 2021.07.21 |
Comments