CHAR_BIT - C limits.h

C examples for limits.h:CHAR_BIT

Type

Macro

Description

Number of bits in a char object (byte). 8 or greater*

Demo Code

#include <iostream>
#include <limits.h>

using namespace std;
int main()/*from w  w w.j a va 2 s .  c  o  m*/
{
    cout << CHAR_BIT;
    return 0;
}

Related Tutorials