minLONG()
Returns the value of the MIN_LONG constant: -9223372036854775808 .
Synopsis
long minLONG();
Parameters
Parameter | Description |
None | - |
Return value
MIN_LONG -9223372036854775808, if OK.
Description
Returns the value of the MIN_LONG constant: -9223372036854775808.
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: [ } |
Assignment
Availability
CTRL
See also
maxFLOAT(), minFLOAT(), maxINT(), minINT(), maxUINT(), minUINT(), maxLONG(), maxULONG(), minULONG()