Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Previously I use c++/c compilers on windows which support the #include <conio.h> header file but on Linux where I have

gcc (Debian 4.9.2-10) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software...

I want a function which works exactly as getch(). I don't know why my compiler doesn't support the header file #include <conio.h>

After searching on net I got this which says that cin.get(); is probably the closest equivalent but these two are different in the way that if we write getch() it does not display the character entered on the console whereas if we enter a character using cin.get() it displays the character on the console. I don't want the character to be displayed on the console.

using getchar() also displays the character on the console.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
818 views
Welcome To Ask or Share your Answers For Others

1 Answer

There are a number of different ways of doing this more portably. The simplest is to use curses:

#include "curses.h"

int main() {
    initscr();
    addstr("hit a key:");
    getch();
    return endwin();
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...