home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat5.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
- #include <time.h>
-
- void main()
- {
- struct tm *cur_time;
- time_t timer;
- char *string;
-
- time(&timer);
- cur_time = localtime(&timer);
- string = asctime(cur_time);
- printf("▓{ªbñºñΘ┤┴╗P«╔╢í¼░ : %s\n",string);
- }