Next: , Previous: PObjectType, Up: Reference



Pointer

(Under construction.)

Synopsis

     type
       Pointer  { built-in type }

Description

Conforming to

Pointer is a Borland Pascal extension.

Example

     program PointerDemo;
     var
       a: Integer;
       b: Boolean;
       p: Pointer;
     begin
       p := nil;
       p := @a;
       p := @b
     end.

See also