当前位置: 代码迷 >> C语言 >> 已解决,谢谢
  详细解决方案

已解决,谢谢

热度:302   发布时间:2006-10-04 22:14:05.0
已解决,谢谢

/* HELLO.C -- Hello, world */

#include "stdio.h"
#include "conio.h"

main()
{
printf("Hello, world\n");
getch();
}

这是WIN-TC打开的默认的

#include "stdio.h"
#include "conio.h"

上面这两句是干什么用的,表示什么意义

[此贴子已经被作者于2006-10-4 22:58:30编辑过]


----------------解决方案--------------------------------------------------------
头文件.
包括一些系统已经定义好的宏,函数等,用户可以直接调用.
----------------解决方案--------------------------------------------------------

谢谢

[此贴子已经被作者于2006-10-4 22:58:02编辑过]


----------------解决方案--------------------------------------------------------
  相关解决方案