C++源代碼如何生成可執行文件

先看一段最簡單的代碼: #include <stdio.h> int main (int argc,char* arg[]) { printf("hello world"); return 0; } 如何把上面的代碼轉換成可執行的代碼呢,一般咱們能夠用gcc hello.c 在一樣的路徑下獲得一個a.out的可執行文件。 其實gcc 編譯連接一個可執行文件分爲4個步驟: 1 預處理(Pre-Pro
相關文章
相關標籤/搜索