ex85.pp 169 B

1234567891011
  1. Program Example85;
  2. { Program to demonstrate the SetLength function. }
  3. Var S : String;
  4. begin
  5. FillChar(S[1],100,#32);
  6. Setlength(S,100);
  7. Writeln ('"',S,'"');
  8. end.