Answers for "how to clear screen in c++ without system"

C++
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