当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 asctime()用法及代码示例



描述

C库函数char *asctime(const struct tm *timeptr)返回一个指向表示结构日期和时间的字符串的指针struct timeptr

声明

以下是 asctime() 函数的声明。

char *asctime(const struct tm *timeptr)

参数

这个timeptr是一个指向 tm 结构的指针,该结构包含一个分解成其组件的日历时间,如下所示

struct tm {
   int tm_sec;         /* seconds,  range 0 to 59          */
   int tm_min;         /* minutes, range 0 to 59           */
   int tm_hour;        /* hours, range 0 to 23             */
   int tm_mday;        /* day of the month, range 1 to 31  */
   int tm_mon;         /* month, range 0 to 11             */
   int tm_year;        /* The number of years since 1900   */
   int tm_wday;        /* day of the week, range 0 to 6    */
   int tm_yday;        /* day in the year, range 0 to 365  */
   int tm_isdst;       /* daylight saving time             */
};

返回值

此函数以人类可读的格式返回一个包含日期和时间信息的 C 字符串Www Mmm dd hh:mm:ss yyyy,其中 Www 是工作日,Mmm 是字母的月份,dd 是月份中的第几天,hh:mm:ss 是时间,yyyy 是年份。

示例

下面的例子展示了 asctime() 函数的用法。

#include <stdio.h>
#include <string.h>
#include <time.h>

int main () {
   struct tm t;

   t.tm_sec    = 10;
   t.tm_min    = 10;
   t.tm_hour   = 6;
   t.tm_mday   = 25;
   t.tm_mon    = 2;
   t.tm_year   = 89;
   t.tm_wday   = 6;

   puts(asctime(&t));
   
   return(0);
}

让我们编译并运行上面的程序,它会产生以下结果——

Sat Mar 25 06:10:10 1989

相关用法


注:本文由纯净天空筛选整理自 C library function - asctime()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。