Synopsis
#include <limits.h>
#define INT_MIN processor-dependent-value
Description

INT_MIN is the minimum value for an object of type int.

For processors where an integer is held in 16 bits, INT_MIN is -32768, and for processors where an integer is held in 32 bits, INT_MIN is -2147483648.

Portability

INT_MIN conforms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).