_____________ defines the minimum value for a short integer.
A. SHINT_MIN
B. SHRT_MIN
C. SINT_MIN
D. SHORT_MIN
I have been asked this question by my school teacher while I was bunking the class.
This intriguing question comes from Implementation-Defined Limits topic in portion C Library of C
The correct choice is B. SHRT_MIN
Easiest explanation – to define the minimum value for a short integer, we use the macro SHRT_MIN (defined under the header file limits.h).