C examples for limits.h:CHAR_MIN
Macro
Minimum value for an object of type char. either SCHAR_MIN or 0
#include <iostream> #include <limits.h> using namespace std; int main()/*from www . j av a2 s .c o m*/ { cout << CHAR_MIN; return 0; }