[net.micro.pc] clearing the screen

vifl@hou2f.UUCP (M.MEKETON) (01/11/85)

An easy to clear the screen is to output the form feed character,
(ascii 12), which is interpreted by MS-DOS as a clear screen command.

Something like:

char ff;

ff=12;

printf("%c",ff);

should do it.

Marc S. Meketon
ihnp4!hou2f!vifl