Node:PChar, Next:, Previous:ParamStr, Up:Reference



PChar

(Under construction.)

Synopsis


type
  PChar = ^Char;
or
type
  PChar = CString;

Description

Conforming to

PChar is a Borland Pascal extension.

Example


program PCharDemo;
var
  s: PChar;
begin
  s := 'Hello, world!';
  {$X+}
  WriteLn (s)
end.

See also