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