导航

时间处理函数

#include <time.h>

time_t t;
time(&t);
//获取秒数
struct tm *lt = localtime(&t);
//将秒数转换为当地时间
char *p = asctime(lt);
//将当地时间转换为字符串

 

posted on 2021-04-19 10:04  toughcactus  阅读(46)  评论(0编辑  收藏  举报