I have created a game in BASIC in which I can input data numerous times represented by key strokes while the program is running using "If INKEY$=CHR$()". I am trying to translate this game into C and/or C++, but cannot find an equivalent command. It appears that I can use (kbhit()) once while the program is running, but not more often. Is there a way that I can impliment the above BASIC command in C and/or C++?