随笔分类 -  C语言

摘要:1 #include <stdio.h> 2 #include <time.h> 3 4 //日期格式转时间戳 5 time_t get_timestamp(char* time_str) 6 { 7 struct tm tm;//时间结构体 8 time_t timestamp;//时间类型,表示 阅读全文
posted @ 2021-10-11 19:41 forest_128 阅读(1067) 评论(0) 推荐(0)
摘要:封装.a静态库:打开cmdcd到.c文件所在的文件目录gcc -c xxx.c(注意:如果gcc版本过低,可能需要改成gcc -c xxx.c -std=c99)ar -rc libxxx.a xxx.o(此时已封装好)gcc main.c libxxx.a -o exename(连接主函数进行测试 阅读全文
posted @ 2021-08-25 19:32 forest_128 阅读(293) 评论(0) 推荐(0)
摘要:用低版本GCC4.9.2编译静态库时报错 >gcc -c activityIntensity.c 更改为: >gcc -c activityIntensity.c -std=c99 成功编译 阅读全文
posted @ 2021-08-25 19:06 forest_128 阅读(194) 评论(0) 推荐(0)