int_min macro?

please explain it…

It is a macro in limits.h and has value equal to -2^32. (Minimum value a 4 byte int can have.)
In C++ this macro can be accessed in climits header file

3 Likes

Just to add, the macro is INT_MIN (CAPS)

2 Likes