time函數(shù)是C語言中的一個(gè)標(biāo)準(zhǔn)庫函數(shù),用于獲取當(dāng)前系統(tǒng)時(shí)間的秒數(shù)。
具體用法如下:
#include <time.h>
time_t time(time_t *seconds);
其中,time_t
是一個(gè)整數(shù)類型,seconds
是一個(gè)指向time_t
類型的指針。time
函數(shù)返回當(dāng)前系統(tǒng)時(shí)間的秒數(shù),同時(shí)可以將這個(gè)秒數(shù)存儲(chǔ)到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)
調(diào)用返回當(dāng)前系統(tǒng)時(shí)間的秒數(shù),并將其存儲(chǔ)在current_time
變量中,然后通過printf
函數(shù)輸出當(dāng)前時(shí)間。