C语言的Hello World 程序,
需要引入 <stdio.h> 头文件,输出使用 printf()方法:
#include <stdio.h> int main() { prinf("Hello World "); return 0; }