C examples for limits.h:LLONG_MIN
Macro
Minimum value for an object of type long long int. -9223372036854775807 (-2^63+1) or less*
#include <iostream> #include <limits.h> using namespace std; int main()/* w w w . j av a2 s. co m*/ { cout << LLONG_MIN; return 0; }