Answers for "c++ clear lines from console"

C++
12

clear console c++

system ("CLS");
Posted by: Guest on April-06-2020
0

clear console c++

#include<iostream>
#include<Windows.h>
using namespace std;

int main()
{
  //code.
  system("cls");  //clear console.
  return 0;
}
Posted by: Guest on December-15-2021

Browse Popular Code Answers by Language