Clear Screen Pascal

[Solved] Clear Screen Pascal | C - Code Explorer | yomemimo.com
Question : clear screen pascal

Answered by : audinta-sakti

program HelloWorld;
uses crt; (* Clear screen command is available on crt library *)
begin
ClrScr; (*Clear anything before Hello, World!*)
writeln('Hello, World!');
end.

Source : | Last Update : Fri, 10 Sep 21

Answers related to clear screen pascal

Code Explorer Popular Question For C