C语言中将日期和时间以字符串格式输出的方法
ctime()函数:
头文件:
#include<time.h>
定义函数:
char*ctime(consttime_t*timep);
函数说明:ctime()将参数timep所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为"WedJun3021:49:081993\n"。
注意:若再调用相关的时间日期函数,此字符串可能会被破坏。
返回值:返回一字符串表示目前当地的时间日期。
范例
#include<time.h> main(){ time_ttimep; time(&timep); printf("%s",ctime(&timep)); }
执行
SatOct2810:12:052000
asctime()函数:
头文件:
#include<time.h>
定义函数:
char*asctime(conststructtm*timeptr);
函数说明:asctime()将参数timeptr所指的tm结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为:"WedJun3021:49:081993\n"
返回值:若再调用相关的时间日期函数,此字符串可能会被破坏。此函数与ctime不同处在于传入的参数是不同的结构。
附加说明:返回一字符串表示目前当地的时间日期.
范例
#include<time.h> main(){ time_ttimep; time(&timep); printf("%s",asctime(gmtime(&timep))); }
执行
SatOct2802:10:062000