×

C++ Tutorial

C++ Data types

C++ Operators & Keywords

C++ Conditional Statements

C++ Functions

C++ 'this' Pointer, References

C++ Class & Objects

C++ Constructors & Destructors

C++ Operator overloading

C++ 11 (Advance C++)

C++ Preparation

C++ Header Files & Functionsr

Data Structure with C++

C++ - Miscellaneous

C++ Programs

CHAR_BIT constant with example in C++

C++ CHAR_BIT constant: Here, we are going to learn about the CHAR_BIT macro constant of climits header in C++.
Submitted by IncludeHelp, on May 01, 2019

C++ CHAR_BIT macro constant

CHAR_BIT constant is a macro constant which is defied in climits header, it is used to get the total number of bits of a char object, it returns the number of bits in a char object, which is 8 bits.

Note:

  • The actual value depends on the compiler architecture or library implementation.
  • We can also use <limits.h> header file instead of <climits> header as CHAR_BIT constant is defined in both of the libraries.

Syntax

Syntax of CHAR_BIT constant:

CHAR_BIT

Sample Input and Output

Constant call:
cout << CHAR_BIT;

Output:
8

Example

C++ code to demonstrate example of CHAR_BIT constant with climits header:

// C++ code to demonstrate example of 
// CHAR_BIT constant with climits header
#include<iostream>
#include<climits>
using namespace std;

int main()
{
   //prinitng the value of CHAR_BIT
    cout<<"CHAR_BIT: "<<CHAR_BIT<<endl;
    return 0;
}

Output

CHAR_BIT: 8

C++ code to demonstrate example of CHAR_BIT constant with limits.h header file

// C++ code to demonstrate example of 
// CHAR_BIT constant with <limits.h> header file
#include<iostream>
#include<limits.h>
using namespace std;

int main()
{
   //prinitng the value of CHAR_BIT
    cout<<"CHAR_BIT: "<<CHAR_BIT<<endl;
    return 0;
}

Output

CHAR_BIT: 8


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.