C examples for limits.h:ULLONG_MAX
Macro
Maximum value for an object of type unsigned long long int. 18446744073709551615 (2^64-1) or greater*
#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; }