Answers for "clear screen in c++"

C++
0

clear screen in c++

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

how to clear console c++

#ifdef __cplusplus__
  #include <cstdlib>
#else
  #include <stdlib.h>
#endif

if (system("CLS")) system("clear");
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language