ex9.pp 246 B

12345678910111213
  1. Program Example9;
  2. uses Crt;
  3. { Program to demonstrate the ClrEol function. }
  4. begin
  5. Write('This line will be cleared from the',
  6. ' cursor postion until the right of the screen');
  7. GotoXY(27,WhereY);
  8. ReadKey;
  9. ClrEol;
  10. WriteLn;
  11. end.