gettime

gettime

gettime是一個函數,作用是取得系統時間。

內容簡介


函數名: gettime
功 能: 取得系統時間
用 法:void gettime(struct time *timep);
程序例:
#include
#include
int main(void)
{
struct time t;
gettime(&t);
printf("The current time is: %2d:%02d:%02d.%02d\n",
t.ti_hour, t.ti_min, t.ti_sec, t.ti_hund);
return 0;
}