刚开始学习C语言时,第一个接触的程序就是“你好世界”。 源代码如下: #include <stdio.h> int main() { printf("Hello World!\n"); return 0; } 运行结果: