摘要: GCC的编译过程包括四个阶段:预处理(preprocess)、编译(compile)、汇编(assemble)、链接(link);如下是hello.c的源码。 #include <stdio.h> #define a 2 int main(){ int b=a; printf("hello wo%d 阅读全文
posted @ 2021-01-13 22:29 cynault 阅读(540) 评论(0) 推荐(0) 编辑