hello world是如何在終端打印的?

第一個程序hello world!是如何打印到終端的? 我寫了一個程序: #include <stdio.h> #define STR "hello world" //宏定義一個字符串 int main() { printf("%s\n",STR); return 0; } 編譯這個.c的源文件實際上有4個步驟: 預處理:gcc -E test.c -o test.i (進行宏替換、
相關文章
相關標籤/搜索