Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to make a stop-watch in C (live Stop-watch) without using inbuilt function "Timer" in Turbo C. My code is as follows:

 #include<stdio.h>
 #include<conio.h>
 #include<dos.h>

 int main()
 {
 int hh,mm,ss;
 hh=mm=ss=0;
 gotoxy(10,10);
 printf("\nSTOP - WATCH: ");
 gotoxy(20,18);
 printf("HH : MM : SS");
 _setcursortype(_NOCURSOR);
 for(;;ss++) //An infinite loop
 {
  if(ss==60)
  {
    mm++;
    ss=0;
  }

  if(mm==60)
  {
    hh++;
    mm=0;
  }

  gotoxy(20,20);
  delay(1000);
  printf("%02d : %02d : %02d",hh,mm,ss);

 }  
 return 0;
 }

Now I want to exit from this program on press of a button on the keyboard (lets say 'Q').

share|improve this question
Why not use control-C? – H2CO3 Aug 12 '12 at 13:17
Hi, I want to let user exit from the program on the press of a single key (as we do in other programmes) and not using combination of keys! – DecodingLife Aug 12 '12 at 13:21
you'll probably want to read from the system clock 2 times per second instead of using delay(1000). This code will have a slight time drift. – nielsbot Sep 4 '12 at 18:30

2 Answers

up vote 1 down vote accepted

Use kbhit() and getch() from <conio.h> to get keyboard input.

share|improve this answer
Thanks a lot Alexey....It's working. Thank you :) – DecodingLife Aug 12 '12 at 13:35

Your program is to use kbhit() and getch(). Should you forget, should you mistakenly compile, then your only option is Ctrl + Break (which probably won't work, but you might get lucky).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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