C examples for limits.h:LONG_MIN
Macro
Minimum value for an object of type long int, -2147483647 (-2^31+1) or less*
#include <iostream> #include <limits.h> using namespace std; int main()/* w w w.j a v a 2 s. c om*/ { cout << LONG_MIN; return 0; }