代码:
#include "stdio.h"
#include "conio.h"
main(){
printf("Hello,World");
getch();
}
1.getch(); ------------------等待用户按下任意键,然后继续执行下面的代码。属于conio.h头文件中。
2.printf();--------------------向终端(控制台,显示器)输出字符。属于stdio.h头文件中。
3.main();--------------------主函数,如果做菜是个程序,做菜就是主函数,在主函数中,可以调用,买菜、切菜等子函数。
4.stdio.h ---------------------standard input&output (标准输入输出) 的缩写。
5.conio.h--------------------console input&output(控制台输入输出)的缩写。
Dev C++中开发Hello,World