LIMITS - describe machine's use of integers.

Usage:

#include <limits.h>

Description:

<limits.h> indicates the ranges of various integral types. Below we list the manifests defined in the file.

CHAR_BIT
number of bits in a byte.
CHAR_MAX
maximum value of a "char" object.
CHAR_MIN
minimum value of a "char" object.
INT_MAX
maximum value of an "int" object.
INT_MIN
minimum value of an "int" object.
LONG_MAX
maximum value of a "long" object.
LONG_MIN
minimum value of a "long" object.
SCHAR_MAX
maximum value of a "signed char" object.
SCHAR_MIN
minimum value of a "signed char" object.
SHRT_MAX
maximum value of a "short" object.
SHRT_MIN
minimum value of a "short" object.
UCHAR_MAX
maximum value of an "unsigned char" object.
UINT_MAX
maximum value of an "unsigned int" object.
ULONG_MAX
maximum value of an "unsigned long int" object.
USHRT_MAX
maximum value of an "unsigned short int" object.

Copyright © 1996, Thinkage Ltd.