How do I clear the console in BOTH Windows and Linux using C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T21:49:28Z http://stackoverflow.com/feeds/question/228617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c 5 How do I clear the console in BOTH Windows and Linux using C++ srand 2008-10-23T05:23:04Z 2008-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 -1 Answer by srand for How do I clear the console in BOTH Windows and Linux using C++ srand 2008-10-23T05:25:24Z 2008-10-23T05:25:24Z <p>I know this isn't answering my own question but! This works for Windows (<code>#include &lt;windows.h&gt;</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, &amp;csbi); FillConsoleOutputCharacter(hStdOut, ' ', csbi.dwSize.X * csbi.dwSize.Y, coord, &amp;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#228625 11 Answer by coppro for How do I clear the console in BOTH Windows and Linux using C++ coppro 2008-10-23T05:28:02Z 2008-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 -1 Answer by Adam Pierce for How do I clear the console in BOTH Windows and Linux using C++ Adam Pierce 2008-10-23T05:29:12Z 2008-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 &lt;&lt; "\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, &amp;csbi); FillConsoleOutputCharacter(hStdOut, ' ', csbi.dwSize.X * csbi.dwSize.Y, coord, &amp;count); SetConsoleCursorPosition(hStdOut, coord); #else cout &lt;&lt; "\f"; #endif } </code></pre> http://stackoverflow.com/questions/228617/how-do-i-clear-the-console-in-both-windows-and-linux-using-c/228628#228628 4 Answer by fmsf for How do I clear the console in BOTH Windows and Linux using C++ fmsf 2008-10-23T05:29:42Z 2008-10-23T05:29:42Z <p>For c++</p> <pre><code> #include &lt;cstdlib&gt; 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#263650 2 Answer by Nicola Bonelli for How do I clear the console in BOTH Windows and Linux using C++ Nicola Bonelli 2008-11-04T22:04:33Z 2008-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>