Fork me on GitHub
摘要: 从源文件到可执行文件:源文件的预处理、编译、汇编、链接 当我们写完了C语言代码后,通过gcc将其编译成可执行文件运行,这中间具体经过的步骤包括预处理、编译、汇编、链接四个步骤。 最简单的hello.c源文件内容如下: # include <stdio.h> // 这是一行注释 int main(vo 阅读全文
posted @ 2022-05-03 17:30 husterzxh 阅读(576) 评论(0) 推荐(3) 编辑