C语言time头文件(time.h)中asctime函数的用法及代码示例。
用法:
char* asctime (const struct tm * timeptr);
将tm结构转换为字符串
返回的字符串具有以下格式:
Www Mmm dd hh:mm:ss yyyy |
在哪里Www是工作日Mmm一个月(以字母为单位),dd一个月中的某天,hh:mm:ss时间,和yyyy那一年。
字符串后跟一个new-line字符(
'\n'
),并以null-character终止。它的定义行为等同于:
/* asctime example */
#include <stdio.h> /* printf */
#include <time.h> /* time_t, struct tm, time, localtime, asctime */
int main ()
{
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ( "The current date/time is: %s", asctime (timeinfo) );
return 0;
}
有关自定义日期格式的替代方法,请参见strftime。
参数
返回值
C-string包含人类可读格式的日期和时间信息。返回的值指向一个内部数组,该数组的有效性或值可通过随后的任何调用来更改asctime或者ctime。
示例
/* asctime example */
#include <stdio.h> /* printf */
#include <time.h> /* time_t, struct tm, time, localtime, asctime */
int main ()
{
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ( "The current date/time is: %s", asctime (timeinfo) );
return 0;
}
输出:
The current date/time is: Wed Feb 13 15:46:11 2013 |
相关用法
- C语言 clock用法及代码示例
- C语言 difftime用法及代码示例
- C语言 mktime用法及代码示例
- C语言 time用法及代码示例
- C语言 ctime用法及代码示例
- C语言 gmtime用法及代码示例
- C语言 localtime用法及代码示例
- C语言 strftime用法及代码示例
注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C asctime function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。