home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / DOSTIME.C < prev    next >
Encoding:
Text File  |  1985-02-16  |  251 b   |  16 lines

  1. main()    /* dostime.c -- illustrates various formats for dostime() */
  2. {
  3. char ac[80];
  4. int format, n;
  5. char *acpoint;
  6.  
  7.  
  8. for(n = 1; n < 8; n++){
  9.         format = n;
  10.         dostime(ac, format);
  11.     printf("At the return, the time is: ");
  12.         puts(ac);
  13.  
  14.     }
  15. }
  16.