9.3.145 SIZEOF (X)

Description:  Returns the number of bytes of storage used by the argument. SIZEOF is a specific function with no generic name.  
Class:  Inquiry function; Specific 
Arguments:  X is a scalar or array (of any data type). It must not be an assumed-size array. 
Results:  The result type is INTEGER(4) on x86 processors; INTEGER(8) on Alpha processors. The result value is the number of bytes of storage used by X.  

Examples

SIZEOF (3.44) has the value 4.

SIZEOF ('SIZE') has the value 4.


Previous Page Next Page Table of Contents