SIZEOF

Perform this function to determine the number of bytes required by the given data type.

Example in IL:

arr1:ARRAY[0..4] OF INT;

var1:INT;

LD arr1

SIZEOF

ST var1 (* Result is 10 *)