要在C語言中獲取系統時間,可以使用 <time.h>
頭文件中的函數。以下是一些獲取系統時間的常用函數:
time()
函數:返回當前時間(從1970年1月1日開始的秒數)。#include <stdio.h>
#include <time.h>
int main() {
time_t currentTime;
time(¤tTime);
printf("Current time: %ld\n", currentTime);
return 0;
}
ctime()
函數:將時間(從1970年1月1日開始的秒數)轉換成字符串形式。#include <stdio.h>
#include <time.h>
int main() {
time_t currentTime;
time(¤tTime);
printf("Current time: %s", ctime(¤tTime));
return 0;
}
gmtime()
函數:將時間(從1970年1月1日開始的秒數)轉換成 struct tm
結構體,表示UTC時間。#include <stdio.h>
#include <time.h>
int main() {
time_t currentTime;
struct tm *timeinfo;
time(¤tTime);
timeinfo = gmtime(¤tTime);
printf("Current UTC time: %d-%d-%d %d:%d:%d\n", timeinfo->tm_year + 1900, timeinfo->tm_mon + 1, timeinfo->tm_mday, timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
return 0;
}
這些函數可以幫助你在C語言中獲取系統時間,并進行相應的操作。