#include<stdio.h>//头文件
int main()//定义主函数
{
printf(“hello,world\n”);//输出函数
return 0;//返回主函数值0
}
hello world
最新推荐文章于 2024-07-01 09:09:28 发布
#include<stdio.h>//头文件
int main()//定义主函数
{
printf(“hello,world\n”);//输出函数
return 0;//返回主函数值0
}