1
摘要: C语言-时间处理(当前时间,时间戳转时间,时间转时间戳) 输出当前时间 #include <stdio.h> #include <time.h> int main () { time_t rawtime; struct tm *info;//指向tm结构的指针 char buffer[80]; ti 阅读全文
posted @ 2023-10-19 16:43 Bonne_chance 阅读(1218) 评论(0) 推荐(0) 编辑
1