ctime() -将秒转换成日期和时间
头文件
#include <time.h>
函数
char * asctime(const struct tm * tm );
char * asctime_r(const struct tm * tm ,char * buf );
char * ctime(const time_t * timep );
char * ctime_r(const time_t * timep ,char * buf );
struct tm * gmtime(const time_t * timep );
struct tm * gmtime_r(const time_t * timep ,struct tm * result );
struct tm * localtime(const time_t * timep );
struct tm * localtime_r(const time_t * timep ,struct tm * result );
time_t mktime(struct tm * tm );
struct tm {
int tm_sec; / 秒(0-60) /
int tm_min; / 分钟(0-59) /
int tm_hour; / 小时(0-23) /
int tm_mday; / 每月的一天(1-31) /
int tm_mon; / 月(0-11) /
int tm_year; / 年-1900年 /
int tm_wday; / 星期几(0-6,星期日= 0) /
int tm_yday; / 一年中的一天(0-365,1月1日= 0) /
int tm_

ctime()函数是C语言中的时间处理函数,它将时间戳转换为人类可读的日期和时间字符串。该函数需要包含<time.h>头文件。ctime()返回一个结构体tm,包含了秒、分钟、小时、日期、月份、年份等信息,并且以'年-1900年'的形式表示年份。
最低0.47元/天 解锁文章
4657

被折叠的 条评论
为什么被折叠?



