- 5
How can I delete all charter on the page?
C++
2 Answers
0
Use this:
cout << "\033[2J\033[1;1H";
---
The link:
https://stackoverflow.com/questions/17335816/clear-screen-using-c
0
I mean the result characters, for example, a program that takes a password from the user and then clears it after getting the password.