INT16_MIN --Constant representing the minimum value of int16_t
INT16_MIN is a constant that represents the minimum value of int16_t --signed 16-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", INT16_MIN);
}
"%D" is used in the format specifier of printf function.
The output value of INT16_MIN.
-32768
C Language Zemi