溫馨提示×

C語言time函數(shù)的用法是什么

小億
166
2024-03-28 18:55:08
欄目: 編程語言

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í)間。

0