LLONG_MIN - C limits.h

C examples for limits.h:LLONG_MIN

Type

Macro

Description

Minimum value for an object of type long long int. -9223372036854775807 (-2^63+1) or less*

Demo Code

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

using namespace std;
int main()/*  w  w w .  j av a2  s. co m*/
{
    cout << LLONG_MIN;
    return 0;
}

Related Tutorials