mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 20:10:49 +02:00
15 lines
233 B
ObjectPascal
15 lines
233 B
ObjectPascal
Program Example5;
|
|
|
|
Uses strings;
|
|
|
|
{ Program to demonstrate the StrLCopy function. }
|
|
|
|
Const P : PCHar = '123456789ABCDEF';
|
|
|
|
var PP : PCHar;
|
|
|
|
begin
|
|
PP:=StrAlloc(11);
|
|
Writeln ('First 10 characters of P : ',StrLCopy (PP,P,10));
|
|
end.
|