c语言hello world代码详细解释
#include"stdio.h"#include"conio.h"main(){printf("Hello,world\n");getch();}各个命令的作用,结构等...
#include "stdio.h"
#include "conio.h"
main()
{
printf("Hello, world\n");
getch();
}
各个命令的作用,结构等 展开
#include "conio.h"
main()
{
printf("Hello, world\n");
getch();
}
各个命令的作用,结构等 展开
4个回答
展开全部
下面的内容是Helloworld的详细说明。
// #include是预处理指令,用于包含头文件。
// 头文件中包含着系统或者其他库已经写好的接口。
#include "stdio.h" // 标准输入输出库的头文件
#include "conio.h" // 控制台输入输入库的头文件
main() // main是固定名称,用于标记程序的执行入口
{
printf("Hello, world\n"); // printf是系统输出函数,用于向控制台打印文字。
getch(); // 用于获得用户输入。在此处是为了让程序暂停,便于观察执行结果。对于Helloworld的输出没有影响。
}
推荐于2017-09-16
展开全部
#include "stdio.h"基本输入输出头文件,包含printf函数
#include "conio.h"控制输入输出所需函数的头文件,包含getch函数
main主函数,每个程序必须包含
{括号表示函数体的范围,里面有两行命令
printf("Hello, world\n");输出“hello,world”,\n表示换行
getch();表示结果界面暂停,随便按键即可返回
}
#include "conio.h"控制输入输出所需函数的头文件,包含getch函数
main主函数,每个程序必须包含
{括号表示函数体的范围,里面有两行命令
printf("Hello, world\n");输出“hello,world”,\n表示换行
getch();表示结果界面暂停,随便按键即可返回
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>//头文件库函数包含标准输入输出函数
int main()// 主入口函数
{
printf("hello world!\n");//输出hello word!
return 0;// 返回0
}
int main()// 主入口函数
{
printf("hello world!\n");//输出hello word!
return 0;// 返回0
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
hello 你好
world世界
程序猿学会的第一句话!
world世界
程序猿学会的第一句话!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询