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 (进行宏替换、
相关文章
相关标签/搜索