Node: PChar, Next: Pi, Previous: ParamStr, Up: Reference
(Under construction.)
type PChar = ^Char;
type PChar = CString;
PChar is a Borland Pascal extension.
PChar
program PCharDemo; var s: PChar; begin s := 'Hello, world!'; {$X+} WriteLn (s) end.