alternative to cin

Most of my assignments thus far have involved accepting some input from the keyboard with cin.
The problem is that cin always requires the user to press enter, and now I have to worry about whether or not to use a cin.ignore()
Is there an easy way to grab the input as soon as the user presses a key, without having them hit enter?
In conio.h you should find getch().
By using it you could get each character the user inputs from the keyboard
Topic archived. No new replies allowed.