vote up 6 vote down star
1

I've looked everywhere for this function and cannot find the header files to make this work. It says clrscr() undeclared which brings me to the question. Is clrscr(); a fuction in C++?

flag

56% accept rate
One of my C teachers (who was officially a C++ teacher) used to give us a C header file defining such a method, implemented using WinAPI calls. He never took the time to explain that it wasn't part of any standard library, thus he'd always get questions from students who couldn't compile his examples at home. He was also a fan of <conio.h>. Ahhh memories... – Trillian May 30 at 18:04

7 Answers

vote up 18 vote down

It used to be a function in <conio.h>, in old Borland C compilers.

It's not a C++ standard function.

link|flag
3  
Borland did had some pretty good DOS graphics libraries. – Lucas McCoy May 30 at 17:20
Actually, Microsoft C++ still has conio.h, although functions like clrscr() are not there. – Vilx- May 30 at 17:44
vote up 1 vote down

A web search says the header file you want is 'conio.h' - I haven't tried it out, so no guarantees. Its existence may also depend on what platform you are compiling against.

link|flag
vote up 0 vote down

The easiest way to clear the screen in real C++ is to just send out a bunch of blank lines. Of course this is assuming that stdout is directed at the screen and not a file:

for (int i = 0; i < 80; ++i)
     cout << "\n";
cout << endl;
link|flag
2  
It also assumes that the console line buffer is less than 80 lines, which is not guaranteed. – Euro Micelli May 30 at 22:22
Yup - but if you're worry about "clearing" a screen buffer, usually you know how many lines you're dealing with. – Eclipse May 31 at 1:06
vote up 3 vote down

you have to include this header file for this function

#include <conio.h>
link|flag
vote up 7 vote down

And before someone posts the usual "please email me the conio.h file" request, can I point out that this ancient Borland header file only contained the declaration of the function. You would also need the supporting Borland library, which will not be compatible with any modern C++ compilation system.

link|flag
vote up 3 vote down

As mentioned before, clrscr() is from turbo c++, inside conio.h

For all intents and purposes, conio.h is "non standard", and as such should be probably avoided.

I tend to use the precompiler to choose what to use for a simple clear screen, and just call the operating system's clear program.... it's smart enough to know how "tall" the screen is.

// somewhere in the program
#DEFINE WINDOWS 1

void console_clear_screen() {
  #ifdef WINDOWS
  system("cls");
  #endif
  #ifdef LINUX
  system("clear");
  #endif
}

In windows, you may want to look at the windows.h, You can interact with the windows console directly using a "handle", often noted in code as an hWin.

In linux, i've had good luck with curses/ncurses, although it is a little confusing at first.

link|flag
1  
Isn't #define lowercase? Also the compiler will define WINDOWS or LINUX for you, won't it? – jmucchiello May 30 at 23:03
I don't know if define is case sensitive. and typically that define is included via windows.h as "win32" It was just an example. – Ape-inago May 31 at 17:36
vote up 1 vote down

I used to do borland too.

Investigating curses is a good idea. It works on many unix platforms.

You might take a look at nconio at source forge.

This looks promising as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.