ex9.pp 234 B

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