UCHAR_MAX - C limits.h

C examples for limits.h:UCHAR_MAX

Type

Macro

Description

Maximum value for an object of type unsigned char. 255 (2^8-1) or greater*

Demo Code

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

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

Related Tutorials