Linux練習(時間變爲經常使用時間)

#include <time.h> #include <stdio.h> int main() { struct tm *tm_ptr; time_t the_time; (void) time(&the_time); tm_ptr=gmtime(&the_time); printf("Raw time is %ld\n",the_time);
相關文章
相關標籤/搜索