CHAR_MIN - C limits.h

C examples for limits.h:CHAR_MIN

Type

Macro

Description

Minimum value for an object of type char. either SCHAR_MIN or 0

Demo Code

#include <iostream>
#include <limits.h>

using namespace std;
int main()/*from   www .  j av a2 s .c  o m*/
{
    cout << CHAR_MIN;
    return 0;
}

Related Tutorials