《深入理解計算機系統》(0) 從hello.c到hello

#include <stdio.h> int main() { printf("hello, world\n"); } 對於一個如上簡單的hello world程序,在Linux環境+gcc下,其轉化爲可執行文件的歷程大致如下: STEP 1: 預處理 預處理器(cpp)根據以字符#開頭的命令(directives),修改原始C程序。如hello.c中#include <stdio.h>
相關文章
相關標籤/搜索