C語言中自動獲取當前時間和日期

C語言中自動獲取當前時間和日期代碼web #include<stdio.h> #include<time.h> void main() { time_t t;//將t聲明爲時間變量 struct tm *p;//struct tm是一個結構體,聲明一個結構體指針 time(&t); p=localtime(&t);//得到當地的時間 printf("%d-
相關文章
相關標籤/搜索