摘要: ​ 今天浅浅分享一下一个hello程序的背后发生了什么 ​ 首先创建一个hello.c程序 ```text #include int main() { printf("Hello World\n"); return 0; } ``` ​ 其实上述过程可以分解为4个步骤,分别是预处理、编译、汇编、链 阅读全文
posted @ 2023-08-05 17:27 桂洛克船长 阅读(11) 评论(0) 推荐(0) 编辑