I\'ve looked everywhere for this function and cannot find the header files to make this work.
It says clrscr() undeclared which brings me to the question. Is clrscr(); a fun
The easiest way to clear the screen in real C++ is to just send out a bunch of blank lines. Of course this is assuming that stdout is directed at the screen and not a file:
for (int i = 0; i < 80; ++i)
cout << "\n";
cout << endl;