getch

  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. anantkhaitan

    Alternate to some imp. "conio.h" functions

    Guys I want some alternative to getch(), gotoxy(), kbhit(), _setcursortype(), etc. So either recommend me a alternative or help me developing a function of similar kind Suppose for the program: int main() { int i=0; char a[]="Help Me! ",ch; do { ch=getch(); printf("%c",a[i%9]); i++...
Top Bottom