maxUINT()
Returns the value of the MAX_UINT constant: 4294967295.
Synopsis
uint maxUINT();
Parameters
| Parameter | Description | 
|---|---|
| None | - | 
Return value
The function returns MAX_UINT 4294967295, if OK.
Description
Returns the value of the MAX_UINT constant: 4294967295.
 Example
Example
main()
{
  int c, d;
  float a, b;
  unsigned e, f;
  long g, h;
  ulong i, j;
  a = minFLOAT();
  b = maxFLOAT();
  c = minINT();
  d = maxINT();
  e = minUINT();
  f = maxUINT();
  g = minLONG();
  h = maxLONG();
  i = minULONG();
  j = maxULONG();
  DebugN(a, b, c, d, e, f, g, h, i, j);
  /*The following is shown in the Log Viewer:
  [-1.7976931348623e+308][1.7976931348623e+308][-2147483648][2147483647][0][4294967295][-9223372036854775808][9223372036854775807][0][18446744073709551615]
  */*/
}Assignment
Availability
CTRL
