LONG_MIN - C limits.h

C examples for limits.h:LONG_MIN

Type

Macro

Description

Minimum value for an object of type long int, -2147483647 (-2^31+1) or less*

Demo Code

#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;
}

Related Tutorials