1.程序 下面是C语入门级的代码 打印出hello world #include <stdio.h> int main(void) { /* 程序编译后运行后输出 "hello world" */ printf("hello world"); return 0; } 2.程序运行 对程序进行编译并运行