这个程序是一些国外C教材中作为第一个程序例子介绍的,一般称为Hello程序。
#include <stdio.h> int main() { printf("%s\n", "Hello World!"); return 0; }
编写一个C程序运行时输出 Hello World!
原文:https://www.cnblogs.com/weiyidedaan/p/13359681.html