提交 27aec7c1 编写于 作者: Sunrise_G's avatar Sunrise_G 🌻

删除 一个最简单的C语言程序

上级 59075523
#include <stdio.h> // include是一个预设指令,告诉编译器在实际编译前要包含<stdio.h>文件
int main() //main 主函数;程序的入口; int 整形数据类型
{
printf("Hello,World!\n"); // printf是C编译系统提供的标准函数库中的输出函数
return 0; //把0作为函数(main函数)的返回值,这是所有C程序所要求的
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册