1 hello word


#include <stdio.h> // 包含头文件stdio.h   stdio 就是指 “standard input & output"(标准输入输出) h是head 
int main() //主函数
{
printf("Hello World! ");//输出hello word 到黑窗口
return 0; //返回值是0
}
原文地址:https://www.cnblogs.com/mljqqh/p/6828653.html