数据驱动、坚持为客户提供有价值的服务和内容
原文: 前言
C语言程序从源代码到二进制行程序都经历了那些过程?本文以Linux下C语言的编译过程为例,讲解C语言程序的编译过程。
编写hello world C程序:
// hello.c #include int main(){ printf("hello world! "); }
编译过程只需:
$ gcc hello.c # 编译 $ ./a.out #