home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT5.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-19  |  479 b   |  19 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat5.c                                               */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <time.h>
  7.  
  8. void main()
  9. {
  10.  struct tm *cur_time;
  11.  time_t timer;
  12.  char *string;
  13.  
  14.  time(&timer);
  15.  cur_time = localtime(&timer);
  16.  string = asctime(cur_time);
  17.  printf("▓{ªbñºñΘ┤┴╗P«╔╢í¼░ : %s\n",string);
  18. }
  19.