在C語言中,可以通過使用time.h頭文件中的time()函數來獲取當前時間,并通過tm結構體中的tm_year成員來獲取年份。下面是一個獲取當前年份的示例代碼:
#include <stdio.h>
#include <time.h>
int main() {
time_t t = time(NULL);
struct tm *now = localtime(&t);
int year = now->tm_year + 1900;
printf("Current year is: %d\n", year);
return 0;
}
在以上示例代碼中,首先使用time()函數獲取當前時間戳,然后通過localtime()函數將時間戳轉換為tm結構體,最后使用tm_year成員加上1900來獲取當前的年份。