想了解的看这个
说实话我也是一头雾水
C语言time.h从头学.rar
(10.96 KB)
说实话我也是一头雾水
从不知道到知道,到知道自己不知道,成长的道路上脚步深深浅浅
#include <time.h> #include <stdio.h> void printtime( const struct tm* ptm ) { printf( "%04d年%02d月%02d日 %02d时%02d分%02d秒\n" , ptm->tm_year+1900, ptm->tm_mon+1, ptm->tm_mday , ptm->tm_hour, ptm->tm_min, ptm->tm_sec ); printf( "本年第%03d天,星期%01d\n" , ptm->tm_yday+1, ptm->tm_wday ); } int main( void ) { time_t t1 = 1218246780; struct tm* tm1 = localtime( &t1 ); // 如果用gmtime替代localtime,获得的就是UTC时间 if( tm1 ) { printtime( tm1 ); } }