asctime()函数asctime
语法:
1 2 |
?? #include <time.h> ?? char *asctime( const struct tm *ptr ); |
功能: 函数将ptr所指向的时间结构转换成下列字符串:
把ptr 指向的tm结构体中储存的时间转换为字符串,返回的字符串格式为:Www Mmm dd hh:mm:ss yyyy。其中Www为星期;Mmm为月份;dd为日;hh为时;mm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
为分;ss为秒;yyyy为年份。#include <stdio.h>???? #include <time.h> ? int main () { ???? time_t rawtime; ???? struct tm * timeinfo; ? ???? time ( &rawtime ); ???? timeinfo = localtime ( &rawtime ); ???? printf ( "The current date/time is: %s", asctime (timeinfo) ); ? ???? return 0; } |