Node:SizeType, Next:, Previous:SizeOf, Up:Reference



SizeType

Synopsis


type
  SizeType  { built-in type }

Description

SizeType is an integer type (usually unsigned) to represent the size of objects in memory.

Conforming to

SizeType is a GNU Pascal extension.

Example


program SizeTypeDemo;
var
  a: array [1 .. 10] of Integer;
  Size: SizeType;
begin
  Size := SizeOf (a);
  WriteLn (Size)
end.

See also