maxFLOAT()
Returns the value of the MAX_FLOAT constant: 1.7976931348623e+308.
Synopsis
float maxFLOAT();
Parameters
Parameter | Meaning |
None | - |
Return value
MAX_FLOAT 1.7976931348623e+308, if OK.
Description
Returns the value of the MAX_FLOAT constant: 1.7976931348623e+308.
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);
} |
Assignment
Availability
CTRL
See also
minFLOAT(), maxINT(), minINT(), maxUINT(), minUINT(), maxLONG(), maxULONG(), minLONG(), minULONG()