Hello, how can i clean only part of the screen in C++? Please | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hello, how can i clean only part of the screen in C++? Please

16th Apr 2020, 9:05 AM
Bryan Carrera
Bryan Carrera - avatar
2 Answers
0
There are no standard screen cleaning functions in C++. You would have to look up any commands your terminal implements for this purpose and forward them to the host environment via std::system: https://en.cppreference.com/w/cpp/utility/program/system Alternatively, to mimic such a behaviour, you can always insert a specific number of newlines, but that would depend on the terminal size.
16th Apr 2020, 10:22 AM
Shadow
Shadow - avatar
0
You could take a look at the ncurses library: it's a robust cross-platform/terminal handler ;) http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/
16th Apr 2020, 2:58 PM
visph
visph - avatar