Ok Guys I need some help with a small nigglying problem I have traditionally used
the following code to check for a keypress when using the console and in msdos thats how far back Ive been using getch() but need to do something similar to this in C++ with cin and iostream.h
see:
#include <conio.h>
char c;
printf("Press any key to continue..");
c = getch();
Is there some easy way to do the same in C++ with iostream.h and cin ?
any help would be greatly appreciated.