摘要: 1.输出unix时间戳,和本地时间 #include<time.h> #include<stdio.h> void main() { time_t now; struct tm *timenow; time(&now); //获取unix时间戳 printf("now:%llu\n",now); t 阅读全文
posted @ 2021-01-08 18:08 疾风泣影 阅读(1545) 评论(0) 推荐(0) 编辑