asctime
asctime, asctime_s
Defined in header <time.h> | ||
---|---|---|
char* asctime( const struct tm* time_ptr ); | (1) | |
errno_t asctime_s(char *buf, rsize_t bufsz, const struct tm *time_ptr); | (2) | (since C11) |
tm
to a textual representation of the following fixed 25-character form: Www Mmm dd hh:mm:ss yyyy\n
-
Www
- three-letter English abbreviated day of the week fromtime_ptr->tm_wday
, one ofMon
,Tue
,登录查看完整内容