C 速查手冊
11.5.6 asctime()
time.h 的函數 (function) asctime() 將結構 (structure) tm 中所表示的時間格式轉換成字串 (string) ,因此以指向結構 tm 的指標 (pointer) 當作參數,回傳表示此時間格式的字串 (string) 。
以下程式示範使用 asctime() 的結果
#include <stdio.h>
#include <time.h>
int main(void)
{
time_t t1 = time(NULL);
struct tm *nPtr = localtime(&t1);
char *now = asctime(nPtr);
printf(now);
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:casctime.c
功能:示範 time.h 中函數 asctime() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc casctime.c |
$ a.out |
Sat Dec 30 13:49:20 2017 |
$ |