clrscr

  1. MetalheadGautham

    C & C++ getch() and clrscr() functions in Linux

    Hope this helps newbies. clrscr() system("clear"); //Needs cstdlib headder file so do #include<cstdlib> getch() getchar(); // Needs stdio.h so do #include<stdio.h> And yeah, always use using namespace std; after including headders. Need that because actual usage of cout...
  2. T

    How to use clrscr() function in gcc?

    Is it possible to use functions like clrscr(), gotoxy() in gcc? I have found that conio.h is for windows only, but is there any workaround to be able to use it in linux?
  3. aditya.shevade

    About C functions clrscr, delay. Cannot be found?

    Hi I have a question. I have been using turboc C for some time now. I heard that DevCPP is better, so now I am using it on Windows. And on linux, I am using Anjuta that comes with opensuse 10.2 Now the problem is that, the function clrscr, used to clear the screen is not avalable in both...
Top Bottom