#include <stdio.h> #include <time.h> void main(){ struct tm *target_time; time_t rawtime, t; int year,month,mday,hh,mm,ss; time ( &rawtime ); target_time = localtime ( &rawtime ); ...
阅读全文
2008
04-15