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').
delay(1000). This code will have a slight time drift. – nielsbot Sep 4 '12 at 18:30