SIZEOF returns integer that gives the size in bytes of memory storage space required by a variable.
Syntax:RetVal = SIZEOF(Variable) Return Value:
Parameters:
|
DIM RetVal AS SIZE_T DIM Longish# Longish# = 1234567.890123 RetVal = SIZEOF(Longish#) PRINT RetVal
8