Answers for "clear screenn c++"

C++
2

clear screen in c++

enter code here
void clrscr()
{
  system("cls");
}
Posted by: Guest on February-21-2021
4

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
Posted by: Guest on November-12-2021

Browse Popular Code Answers by Language