Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to set up the clrscr()

Status
Not open for further replies.

Phred

Programmer
Apr 6, 1999
20
0
0
US
i'm wondering if anyone knows what headers need to be included to use clrscr()...any help would be greatly appreciated!!!
 
Hi Phred,<br>
clrscr() is not an ansi compatible standard. It is something some of the older dos based compilers had.<br>
<br>
You can clear the screen using <br>
system("cls"); // for console apps<br>
<br>
--<br>
Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top