Horje
how to clear screen in C++ console Code Example
clear screen in c++
enter code here
void clrscr()
{
  system("cls");
}
how to clear screen in C++ console
using the "system" function you enter a cmd command which is in this case "cls"

in code it will look something like this

	system("cls"); 

and it will clear your screen




Cpp

Related
c++ create threads Code Example c++ create threads Code Example
how to read a line from the console in c++ Code Example how to read a line from the console in c++ Code Example
reference function in c++ Code Example reference function in c++ Code Example
c++ code for selection sort Code Example c++ code for selection sort Code Example
c++ print vector without loop Code Example c++ print vector without loop Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13