I'm using scanf() to read user input on terminal in a console application. scanf waits until the user hits the return key to read. Is there a way to read the user input on each keystroke?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 5 down vote accepted

The usual way would be to use the getch function from (the Mac port of) ncurses.

Note that while getchar reads a single character, it still normally does buffered reading, so you need to press 'return'/'enter' before it'll return.

link|improve this answer
feedback

getch() returns the character stream from stdin as it is typed.

link|improve this answer
That would be very unusual - it is not the default behaviour. – Jonathan Leffler Jul 23 '11 at 7:04
-1 getchar also waits until the user hits the return key – user411313 Jul 23 '11 at 11:44
feedback
char c = getchar();

It should do the trick.

link|improve this answer
3  
actually, it is better to read it as int – Binyamin Sharet Jul 22 '11 at 22:22
2  
why ? he wants a char - and an int takes more memory – Quantic Programming Jul 22 '11 at 22:23
3  
with int you can check for out-of-band values, also, when declared as local variable it will probably take the same place. – Binyamin Sharet Jul 22 '11 at 22:27
2  
@Quantic: getchar() returns an int, so it can return any normal char as well as a non-char value like EOF. – Rudy Velthuis Jul 22 '11 at 22:28
I didn't quite understand what 'out-of-band' values mean - please explain – Quantic Programming Jul 22 '11 at 22:28
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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