第一个代码hello,word

#includ<stdio.h>

//include  包括,引用

//stdion.h  标准化的输入输出库文件 【std 标准 / i——input 输入 / O——output 输出】

int main(){

//int 返回值的类型

//main 函数 程序入口

printf(“Hello,word/n”);

//printf打印输出

return 0;

//返回0程序正常结束

}

//分号代表一条语句的结束

原文地址:https://www.cnblogs.com/zwf020107/p/14138849.html