ex57.pp 257 B

1234567891011121314
  1. Program Example57;
  2. { Program to demonstrate the SeekEof function. }
  3. Var C : Char;
  4. begin
  5. { this will print all characters from standard input except
  6. Whitespace characters. }
  7. While Not SeekEof do
  8. begin
  9. Read (C);
  10. Write (C);
  11. end;
  12. end.