INT32_MIN --Constant representing the minimum value of int32_t
INT32_MIN is a constant that represents the minimum value of int32_t --signed 32-bit integer type. It can be used by including the " stdint.h" header. This is the constant macro introduced in C99.
#include <stdio.h>
#include <stdint.h>
int main (void) {
printf("%d", INT32_MIN);
}
"%D" is used in the format specifier of printf function.
The output INT32_MIN value.
-2147483648
C Language Zemi