C examples for limits.h:ULONG_MAX
Macro
Maximum value for an object of type unsigned long int. 4294967295 (2^32-1) or greater*
#include <iostream> #include <limits.h> using namespace std; int main()/*w ww.j av a 2 s . c o m*/ { cout << ULONG_MAX; return 0; }