摘要:
#include <stdio.h>#include <time.h>int main(void){ time_t tick; struct tm tm; char s[100]; tick = time(NULL); tm = *localtime(&tick); strftime(s, size 阅读全文
posted @ 2017-12-13 17:59
lydstory
阅读(203)
评论(0)
推荐(0)