Answers for "console clear c+"

C++
10

c++ clear console

#include <Windows.h>

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

clear console c++

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

console clear c+

i swear if you write system("cls"); one more time you're ugly
Posted by: Guest on August-02-2021

Browse Popular Code Answers by Language