ctime() 函数在 C/C++ 中
C 库函数 char *ctime(const time_t *timer) 根据参数 timer 返回表示本地时间的字符串。
返回的字符串有以下格式 − Www Mmm dd hh:mm:ss yyyy,其中 Www 是星期, Mmm 是大写月份, dd 是月中的那一天, hh:mm:ss 是时间, yyyy 是年份。
语法如下 −
char *ctime(const time_t *timer)
此函数获取 time_t 的指针,其中包含日历时间。它返回一个包含日期的字符串,以人类可读的格式提供时间信息。
示例
#include <stdio.h> #include <time.h> int main () { time_t curtime; time(&curtime); printf("Current time = %s", ctime(&curtime)); return(0); }
输出
Current time = Thu May 23 17:18:43 2019
广告