2022年12月4日

编译、目标文件与静态链接

摘要: 编译、目标文件与静态链接 从源代码到可执行文件 几乎所有程序员在入门时都编写过如下的Hello Word程序 #include <stdio.h> int main(){ printf("Hello World!\n"); return 0; } 然后使用如下命令 gcc hello.c -o he 阅读全文

posted @ 2022-12-04 23:04 xiaomingcc 阅读(317) 评论(0) 推荐(0)

导航