In turbo c++, we can use getch() function available in conio.h. But in linux, gcc compiler doesn't provide conio.h header file, then how to get functionality of getch() function?

link|improve this question
feedback

4 Answers

Check out curses:

http://en.wikipedia.org/wiki/Curses_%28programming_library%29

link|improve this answer
   
If you're going to downvote - please explain why – Jamie Wong Jul 18 '10 at 18:09
Agreed, the downvote is unjustified - curses actually provides a getch() function. – caf Jul 19 '10 at 0:27
feedback

If echoing to the screen is not a problem, you could try using getchar() from stdio.h.

link|improve this answer
Echoing to the screen is not the only difference between getch() and getchar(). getch() doesn't wait for a carriage return before being reading from the buffer. E.g. to input 'a' using getchar(), you have to type a[ENTER]. With getch(), you only need type 'a'. – Jamie Wong Jul 18 '10 at 19:36
feedback

getch() seems to be included in curses library.

link|improve this answer
feedback

In Unix, getch() is part of the ncurses library. But I wrote a workaround for this question that lets you use getch-like functionality without the rest of the curses baggage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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