C語言 庫函數 time()
C語言 庫函數 time()
C 庫函數 time_t time(time_t *seconds) 返回自紀元 Epoch(1970-01-01 00:00:00 UTC)起經過的時間,以秒為單位。如果 seconds 不為空,則返回值也存儲在變量 seconds 中。
1. 聲明
下面是 time() 函數的聲明。
time_t time(time_t *t)
2. 參數
- seconds -- 這是指向類型為 time_t 的對象的指針,用來存儲 seconds 的值。
3. 返回值
以 time_t 對象返回當前日歷時間。
4. 實例
下面的實例演示了 time() 函數的用法。
#include <stdio.h> #include <time.h> int main () { time_t seconds; seconds = time(NULL); printf("自 1970-01-01 起的小時數 = %ld\n", seconds/3600); return(0); }
讓我們編譯并運行上面的程序,這將產生以下結果:
自 1970-01-01 起的小時數 = 373711