Hello World! 这个程序是一些国外C教材中作为第一个程序例子介绍的,一般称为Hello程序。
#include <stdio.h> int main() { printf("%s ", "Hello World!"); return 0; }