home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat191.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <time.h>
-
- void main()
- {
- time_t cur_time;
- char *time_string;
-
- cur_time = time(NULL);
- time_string = ctime(&cur_time);
- printf("Ñ╪½eñºñΘ┤┴╗P«╔╢í¼░: %s", time_string);
- }