I just discovered that.
I wrote a new function just for it, and removed conio.h
void clrscr(){
#ifdef WINDOWS
system("cls");
#else
system("clear");
#endif
}
Also, to note again, this was to demonstrate the difference between Turbo C++ 3.0 and Visual C++ 2008. The code in Turbo C++ is really bad because it was supposed to be. This is part of my report/push towards the class using a better IDE and modern standards.