溫馨提示×

如何在C語言中使用time()函數(shù)獲取當前時間

小樊
132
2024-08-18 14:15:35
欄目: 編程語言

在C語言中,可以使用time()函數(shù)來獲取當前時間。需要包含<time.h>頭文件,并調(diào)用time(NULL)函數(shù)即可獲取當前時間的秒數(shù)。

以下是一個簡單的示例代碼:

#include <stdio.h>
#include <time.h>

int main() {
    time_t current_time;
    current_time = time(NULL);

    printf("當前時間的秒數(shù):%ld\n", current_time);

    return 0;
}

運行上述代碼,將會輸出當前時間的秒數(shù)。

0