Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++의 CHAR_BIT

<시간/>

CHAR_BIT는 char의 비트 수입니다. C++ 언어의 "limits.h" 헤더 파일에 선언되어 있습니다. 바이트당 8비트입니다.

다음은 C++ 언어로 된 CHAR_BIT의 예입니다.

예시

#include <bits/stdc++.h>
using namespace std;
int main() {
   int x = 28;
   int a = CHAR_BIT*sizeof(x);
   stack<bool> s;
   cout << "The number is : " << x << endl;
   for (int i=1; i<=a; i++) {
      s.push(x%2);
      x = x/2;
   }
   cout << "The number of bits in a byte : " << CHAR_BIT << endl;
   for (int i=1; i<=a; i++) {
      cout << s.top();
      s.pop();
      if (i % CHAR_BIT == 0)
      cout << " ";
   }
   return 0;
}

출력

The number is : 28
The number of bits in a byte : 8
00000000 00000000 00000000 00011100