提取系统时间到毫秒
#include <stdio.h>#include <time.h>void main(){char logtime[80];time_t now_time;now_time=time(NULL);strftime(logtime,sizeof(logtime),"日期:20%y-%m-%d 时间:%H:%M:%S.%M",localtime(&now_time));printf("%s\n",logtime);}
补充:综合编程 , 其他综合 ,