time函數是C語言中的一個標準庫函數,用于獲取當前系統時間的秒數。
具體用法如下:
#include <time.h>
time_t time(time_t *seconds);
其中,time_t
是一個整數類型,seconds
是一個指向time_t
類型的指針。time
函數返回當前系統時間的秒數,同時可以將這個秒數存儲到seconds
指針指向的變量中。
示例代碼如下:
#include <stdio.h>
#include <time.h>
int main() {
time_t current_time;
current_time = time(NULL);
printf("Current time: %ld\n", current_time);
return 0;
}
在上面的例子中,time(NULL)
調用返回當前系統時間的秒數,并將其存儲在current_time
變量中,然后通過printf
函數輸出當前時間。