当前位置:编程学习 > 网站相关 >>

提取系统时间到毫秒

#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);
}
补充:综合编程 , 其他综合 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,