Answers for "c++ how to clear the terminal"

C++
10

c++ clear console

#include <Windows.h>

int main() {
	//print stuff
    
	system("cls"); // clear console
}
Posted by: Guest on March-02-2020

Code answers related to "c++ how to clear the terminal"

Browse Popular Code Answers by Language