INTMIN
INTMIN is a conventional name used in many programming languages to denote the minimum value that can be represented by a signed integer type. It is often exposed as a constant or macro, such as INT_MIN in C and C++, and is used in bounds checking, initialization, and algorithms that require a known lower bound.
In C and related languages, INT_MIN is defined in limits.h as the negation of INT_MAX minus one.
Usage considerations include initialization to the smallest possible value, comparison benchmarks, and detecting underflow in arithmetic
Beyond C, many languages provide analogous constants for their integer types (for example, Integer.MIN_VALUE in Java).