时间编程
wangzhibo_csdn
我花开后百花杀
展开
-
格林威治时间
格林威治时间:格林威治是英国伦敦南郊原格林威治天文台的所在地,它又是世界上地理度的起始点。对于世界上发生的重大事件,都以格林威治的地方时间记录下来。一旦知道了格林威治时间,人们就很容易推算出相当的本地时间。将日历时间转换为格林威治标准时间:头文件 : #include函数原型:struct tm *gmtime(const time_t *timep);strcut tm原创 2017-08-02 22:29:55 · 862 阅读 · 0 评论 -
将格林威治时间转换为字符串
将格林威治时间转换为字符串头文件 : #include函数原型:char *asctime(const struct tm *tm)函数功能:将格林威治时间转换为字符串参 数:指向 struct tm 结构体指针返 回 值 :字符串指针范 例:#include#includeint main(){time_t t;char *time_str;s原创 2017-08-02 22:31:32 · 1575 阅读 · 0 评论