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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat35.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <time.h>
  6.  
  7. void main()
  8. {
  9.    time_t current_time;
  10.    current_time = time(NULL);
  11.    printf("ñ╡ñ╤ñºñΘ┤┴ñ╬Ñ╪½eñº«╔╢í¼░ : %s\n", ctime(¤t_time));
  12. }
  13.