can someone help me differenciate the functions getch(), getche(), and ungetch() ?
also, I seem to have conflicts when testing this specific code under MSVC 6. It seems that the output happens after the loop terminates.
for(int i=0; i<10; i++)
{
A[i]=getch(); // A is a vector
cout<<A[i];
}
