home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat107.c */
- /*------------------------------------------------------------------*/
- #include <time.h>
- #include <stdio.h>
- #include <dos.h>
-
- void main()
- {
- time_t time_passed;
- struct tm *cur_time;
-
- /* ¿·▒oª█«µ¬L½┬¬v╝╨╖╟«╔╢í 1970 ª~ 1 ñδ 1 ñΘ 00:00:00 ░_¿∞▓{ */
- /* ªb⌐╥╕g╣L¬║¼φ╝╞ */
- time_passed = time(NULL);
-
- /* ¿·▒oªU¡╙ñ└╢}ñº«╔╢í¿├╝gñJ cur_time ⌐╥½ⁿªVñº tm ½¼ºOñº╡▓║c┼Θññ */
- cur_time = localtime(&time_passed);
-
- printf("ªañΦ«╔╢í¼░ : %s", asctime(cur_time));
- }