ULLONG_MAX - C limits.h

C examples for limits.h:ULLONG_MAX

Type

Macro

Description

Maximum value for an object of type unsigned long long int. 18446744073709551615 (2^64-1) or greater*

Demo Code

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

using namespace std;
int main()//from   w w  w  .  jav  a 2 s.  co  m
{
    cout << ULLONG_MAX;
    return 0;
}

Related Tutorials