Header File conio.h Category Console I/O Routines Prototype void clrscr(void); Description Clears the text-mode window. clrscr clears the current text window and places the cursor in the upper left corner (at position 1,1). Remarque : Do not use this function in Win32 GUI ...
gotoxy(), clrscr(), getche() and getch() in GCC LinuxIn this section you will learn how gotoxy(), getche(), getch() and clrscr() function can be used in GCC Linux. In TurboC compiler you can use that functions by including conio.h header file, but in Linux library these function...
The clrscr() function was used to clear the MS-DOS console screen in older C compilers like Turbo C and Turbo C++. clrscr() is not a standard C function—if you try to compile a program that includes clrscr() in a modern compiler like GCC or Clang, you’ll get an error that says...