Clear Screen | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Clear Screen

Is there any other way to clean the console screen with out using the System("cls") function?

14th Jun 2018, 5:30 AM
Adugna.T
Adugna.T - avatar
2 Answers
+ 7
The console isn't part of the C++ standard, so clearing the screen is pretty much platform-dependent. https://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c
14th Jun 2018, 8:44 AM
Hatsy Rei
Hatsy Rei - avatar
+ 3
Example (In line 34): https://code.sololearn.com/cXmBP9p5Go8X/#cpp system("cls") (Windows) system("clear") (Linux)
14th Jun 2018, 6:57 AM
Shimon
Shimon - avatar