标签:style blog color io linux div ar 时间
#include <stdio.h> #include <time.h> int main() { time_t now; struct tm *w; time(&now); w=localtime(&now); printf("%04d/%02d/%02d\n%02d:%02d:%02d\n",w->tm_year+1900, w->tm_mon+1,w->tm_mday,w->tm_hour,w->tm_min,w->tm_sec); return 0; }
Linux编程(获取系统时间),布布扣,bubuko.com
标签:style blog color io linux div ar 时间
原文地址:http://www.cnblogs.com/verstin/p/3870197.html