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);
     }
}
link|improve this question

76% accept rate
wow! did this question stir up memories of the times past! i just did not think anybody would still be using turbo-c anymore. if you like programming in it, good for you! but i am not sure if the compiler has had any significant revisions. – Sriram May 17 '11 at 7:44
feedback

2 Answers

up vote 2 down vote accepted

CTRLBREAK will probably work for this. I have a vague recollection that CTRLC did not always work with the Borland products.

Though, that was a long time ago so I had to retrieve that from very deep memory, which may have faded somewhat :-)


My question for you is: Why is anyone still using Turbo C when much better and equally cheap solutions are available? Like gcc (such as in Code::Blocks) or even Microsoft Visual C Express.

link|improve this answer
C language is easy to learn when it comes to logic. You have to know the basic, since it was the origin of the c language, if you have mastered it, the new language that comes up will be easy for you to use. – aer May 17 '11 at 6:10
Can you give me any reason why I shouldn't use TurboC... I know this language is obsolete. – aer May 17 '11 at 6:35
1  
@aerohn, that should be reason enough, I would think :-) The language is not obsolete, though the Borland implementation is. It doesn't comply with the latest standards like gcc and it's matched in price by both the gcc and MSVC Express products. I prefer to use a more modern compiler myself. Keep in mind I'm not stating that you should consider moving away from C itself, just Turbo C. – paxdiablo May 17 '11 at 7:44
1  
TurboC is a nice starter kit. I always liked the borland products. I think when you're in the early stages of learning the language, it doesn't matter if your compiler is 30 years old. – cidermonkey May 17 '11 at 21:15
feedback

you need a condition to break out of your while loop.

so like,

main()
{
   char ch = ' ';
   while (ch != 'q')
   {

      printf("Enter a character: \n");
      ch = getche();
      printf("\nThe code for %c is %d.\n", ch, ch);
   }
}

would break out if the entered char was 'q', or if you insist on while(1), you could use the "break" keyword:

main()
{

   while (1)
   {
      char ch;
      printf("Enter a character: \n");
      ch = getche();
      printf("\nThe code for %c is %d.\n", ch, ch);

      if (ch == 'q')
         break;       

   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.