溫馨提示×

linux c怎么獲取當(dāng)前時間

小億
144
2024-08-12 07:55:32

在Linux系統(tǒng)中,可以使用time.h頭文件中的time()函數(shù)來獲取當(dāng)前時間。以下是一個示例代碼:

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

int main() {
    time_t currentTime;
    time(&currentTime);

    printf("Current time: %s", ctime(&currentTime));

    return 0;
}

在上面的示例中,time()函數(shù)將當(dāng)前時間的秒數(shù)存儲在currentTime變量中,然后使用ctime()函數(shù)將時間轉(zhuǎn)換為字符串并打印出來。

0