在C語言中,可以使用time.h頭文件中的函數來獲取當前的年月日時間。下面是一個示例代碼:
#include <stdio.h>
#include <time.h>
int main() {
// 獲取當前時間
time_t currentTime = time(NULL);
// 將時間轉換為本地時間
struct tm* localTime = localtime(¤tTime);
// 獲取年月日
int year = localTime->tm_year + 1900;
int month = localTime->tm_mon + 1;
int day = localTime->tm_mday;
// 輸出年月日
printf("現在的年月日時間是:%d年%d月%d日\n", year, month, day);
return 0;
}
運行這段代碼,輸出結果會顯示當前的年月日時間。