I am using Turbo C... I am stuck then in an infinite loop. How to terminate this loop. I tried to use/press [Cntrl][c] but nothing happens, I don't know the way to stop it. Here's the code.
main()
{
while (1)
{
char ch;
printf("Enter a character: \n");
ch = getche();
printf("\nThe code for %c is %d.\n", ch, ch);
}
}