#include <stdio.h> // 包含头文件stdio.h   stdio 就是指 “standard input & output"(标准输入输出) h是head 
int main() //主函数
{
printf("Hello World!\n");//输出hello word 到黑窗口
return 0; //返回值是0
}
posted on 2017-05-09 00:35  mljqqh  阅读(105)  评论(0编辑  收藏  举报