home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / fgl105 / 14-01.c < prev    next >
Encoding:
Text File  |  1991-05-06  |  277 b   |  17 lines

  1. main()
  2. {
  3.    unsigned int seconds;
  4.    unsigned char key, aux;
  5.  
  6.    seconds = 0;
  7.  
  8.    fg_intkey(&key,&aux);
  9.  
  10.    while (key+aux == 0) {
  11.       fg_waitfor(91);
  12.       seconds += 5;
  13.       printf("%u seconds have elapsed.\n",seconds);
  14.       fg_intkey(&key,&aux);
  15.    }
  16. }
  17.