这篇教程C 库函数 - asctime()写得很实用,希望能帮到您。 描述C 库函数 char *asctime(const struct tm *timeptr) 返回一个指向字符串的指针,它代表了结构 struct timeptr 的日期和时间。 声明下面是 asctime() 函数的声明。 char *asctime(const struct tm *timeptr) 参数timeptr 是指向 tm 结构的指针,包含了分解为如下各部分的日历时间: struct tm { int tm_sec; /* 秒,范围从 0 到 59 C 库函数 - strxfrm() C 库函数 - clock() |