Answers for "clear console in c++ with code"

C++
11

c++ clear console

#include <Windows.h>

int main() {
	//print stuff
    
	system("cls"); // clear console
}
Posted by: Guest on March-02-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