You can use getch() when the kbhit() function returns true. For example:
char ch;
if (kbhit()) ch = getch();
I forget whether getch returns the keypress or whether you are supposed to pass in ch like this: getch (ch). Either way ch will store the keypress.