函數名: ctime
頭檔:<time.h>
函數原型: char *ctime(const time_t *time);
功 能: 把日期和時間轉換成字串
參數: 為轉換的日期時間
傳回值: 傳回轉換後的字串指針
補充:
Www Mmm dd hh:mm:ss yyyy
Www 表示星期幾
Mmm 是以字母表示的月
dd 表示一月中的第幾
hh:mm:ss 表示時
yyyy 表示年份
程式例:取得系統時間,並轉換成字串,輸出結果
#include<stdio.h>#include<time.h>intmain(void){time_tt;//typedeflongtime_t;time(&t);//取得系統時間char*str=ctime(&t);//將時間t轉換為字串printf(Today'sdateandtime:%sn,str);return0;}
運行結果:
Today'sdateandtime:TueJun1618:02:262020