當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。