home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat167.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <time.h>
- #include <dos.h>
-
- void main()
- {
- struct tm *cur_time;
- time_t cur_sec;
- char str[80];
-
- tzset();
- time(&cur_sec);
- cur_time = localtime(&cur_sec);
- strftime(str, 80, "▓{ªb«╔╢í¼O :(12 ñp«╔¿ε) %p %I:%M:%S , (24 ñp«╔¿ε) %X",
- cur_time);
- printf("%s\n",str);
- }