ok, im using visual C++, i know there is no header to clear the screen how might i do this????
I am not using any windows, just the basic C++ programs
Printable View
ok, im using visual C++, i know there is no header to clear the screen how might i do this????
I am not using any windows, just the basic C++ programs
Code:#include <cstdlib>
void somecode() {
std::system("cls");
}
I think you can use clrscr() of conio.h
I thought conio was a Borland thing and didn't work in MSVC?
oops sorry
I just did a test and conio.h work on MSVC.
conio yes, but not clrscr