How do I clear the console in BOTH Windows and Linux using C++ - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T21:49:28Zhttp://stackoverflow.com/feeds/question/228617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c5How do I clear the console in BOTH Windows and Linux using C++srand2008-10-23T05:23:04Z2008-11-04T22:12:51Z
<p>I need a cross platform solution for clearing the console in both Linux and Windows written in C++. Are there any functions in doing this? Also make note that I don't want the end-user programmer to have to change any code in my program to get it to clear for Windows vs Linux (for example if it has to pick between two functions then the decision has to be made at run-time or at compile-time autonomously).</p>
http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/228621#228621-1Answer by srand for How do I clear the console in BOTH Windows and Linux using C++srand2008-10-23T05:25:24Z2008-10-23T05:25:24Z<p>I know this isn't answering my own question but!
This works for Windows (<code>#include <windows.h></code>):</p>
<pre><code>void clrscr()
{
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
COORD coord = {0, 0};
DWORD count;
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(hStdOut, &csbi);
FillConsoleOutputCharacter(hStdOut, ' ', csbi.dwSize.X * csbi.dwSize.Y, coord, &count);
SetConsoleCursorPosition(hStdOut, coord);
}
</code></pre>
http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/228625#22862511Answer by coppro for How do I clear the console in BOTH Windows and Linux using C++coppro2008-10-23T05:28:02Z2008-10-23T05:28:02Z<p>Short answer: you can't.</p>
<p>Longer answer: Use a curses library (ncurses on Unix, <a href="http://pdcurses.sf.net/" rel="nofollow">pdcurses</a> on Windows). NCurses should be available through your package manager, and both ncurses and pdcurses have the exact same interface (pdcurses can also create windows independently from the console that behave like console windows).</p>
<p>Most difficult answer: Use <code>#ifdef WIN32</code> and stuff like that to make your code act differently on different operating systems.</p>
http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/228627#228627-1Answer by Adam Pierce for How do I clear the console in BOTH Windows and Linux using C++Adam Pierce2008-10-23T05:29:12Z2008-10-23T05:29:12Z<p>This is how you do it on any other platform but it doesn't work in Windows:</p>
<pre><code>cout << "\f";
</code></pre>
<p>Perhaps you'll need to make a conditional compilation:</p>
<pre><code>void clrscr()
{
#ifdef _WIN32
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
COORD coord = {0, 0};
DWORD count;
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(hStdOut, &csbi);
FillConsoleOutputCharacter(hStdOut, ' ',
csbi.dwSize.X * csbi.dwSize.Y,
coord, &count);
SetConsoleCursorPosition(hStdOut, coord);
#else
cout << "\f";
#endif
}
</code></pre>
http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/228628#2286284Answer by fmsf for How do I clear the console in BOTH Windows and Linux using C++fmsf2008-10-23T05:29:42Z2008-10-23T05:29:42Z<p>For c++</p>
<pre><code> #include <cstdlib>
void clear_screen()
{
#ifdef WINDOWS
std::system ( "CLS" );
#else
// Assume POSIX
std::system ( "clear" );
#endif
}
</code></pre>
<p>There is no generic command to just clear the console in both languages,</p>
http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/263650#2636502Answer by Nicola Bonelli for How do I clear the console in BOTH Windows and Linux using C++Nicola Bonelli2008-11-04T22:04:33Z2008-11-04T22:12:51Z<p>On linux it's possible to clear the console. The finest way is to write the following escape sequence to stdout:</p>
<pre><code>write(1,"\E[H\E[2J",7);
</code></pre>
<p>which is what <em>/usr/bin/clear</em> does, without the overhead of creating another process.</p>