UINT_MAX - C limits.h

C examples for limits.h:UINT_MAX

Type

Macro

Description

Maximum value for an object of type unsigned int. 65535 (2^16-1) or greater*

Demo Code

#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;
}

Related Tutorials