LLONG_MAX - C limits.h

C examples for limits.h:LLONG_MAX

Type

Macro

Description

Maximum value for an object of type long long int. 9223372036854775807 (2^63-1) or greater*

Demo Code

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

using namespace std;
int main()/*from   w w w. j a v  a 2  s .c  om*/
{
    cout << LLONG_MAX;
    return 0;
}

Related Tutorials