C语言版 Hello World

C语言的Hello World 程序,

需要引入 <stdio.h> 头文件,输出使用 printf()方法:

#include <stdio.h>
int main() {
    prinf("Hello World
");  
   return 0; }
原文地址:https://www.cnblogs.com/tommy-huang/p/8614307.html