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