I was wondering if there was something like QBasic's INKEY$ for VC++ console app programming... is there??
Printable View
I was wondering if there was something like QBasic's INKEY$ for VC++ console app programming... is there??
Take a look at the getch() function.
it seems that getch() sits around and waits for input like qbasic 'input "",a$'
is there one more like inkey$ or function 01h of int 16h?
There should be, try getchar (same as getch only I think this one doesnt wait)
I thought INKEY did wait? Maybe I'm confused...too used to BBC BASIC!