摘要: 文章简单再现C语言从源码到可执行程序实现过程,基于CentOS系统,源码hello.c如下: hello.c #include <stdio.h> int main() { printf("Hello,World!\n"); return 0; } 1. 预编译 gcc -E hello.c -o 阅读全文