ctime()函数:
头文件:
#include <time.h>
定义函数:
char *ctime(const time_t *timep);
函数说明:ctime()将参数timep 所指的time_t 结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为"Wed Jun 30 21 :49 :08 1993\n"。
注意:若再调用相关的时间日期函数,此字符串可能会被破坏。
返回值:返回一字符串表示目前当地的时间日期。
范例
#include <time.h>
main(){
time_t timep;
time (&timep);
printf("%s", ctime(&timep));
}
执行
Sat Oct 28 10 : 12 : 05 2000
asctime()函数:
头文件:
#include <time.h>
定义函数:
char *asctime(const struct tm * timeptr);
函数说明:asctime()将参数timeptr 所指的tm 结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为:"Wed Jun 30 21:49:08 1993\n"
返回值:若再调用相关的时间日期函数,此字符串可能会被破坏。此函数与ctime 不同处在于传入的参数是不同的结构。
附加说明:返回一字符串表示目前当地的时间日期.
范例
#include <time.h>
main(){
time_t timep;
time (&timep);
printf("%s", asctime(gmtime(&timep)));
}
执行
Sat Oct 28 02:10:06 2000
您可能感兴趣的文章:C语言 strftime 格式化显示日期时间的实现C语言实现时间戳转日期的算法(推荐)浅谈时间戳与日期时间互转C语言C语言中读取时间日期的基本方法C语言小程序 计算第二天日期示例代码C语言小程序 如何判断两个日期之差c语言计算三角形面积代码C++实现日期类(Date类)的方法C++时间戳转换成日期时间的步骤和示例代码C++实现两个日期间差多少天的解决方法C语言计算日期差的方法示例