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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat191.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <time.h>
  6.  
  7. void main()
  8. {
  9.      time_t cur_time;
  10.      char *time_string;
  11.  
  12.      cur_time = time(NULL);
  13.      time_string = ctime(&cur_time);
  14.      printf("Ñ╪½eñºñΘ┤┴╗P«╔╢í¼░: %s", time_string);
  15. }
  16.