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
you can use the system cls command to clear the output screen..
clrscr() is from turbo c++, inside conio.h and conio.h is "non standard", and as such should be probably avoided. example
#include
main()
{
some code....;
system("cls");
some more code;
}
its tested and works.. i use dev c++ with mingw compiler.. :)