已解决,谢谢
/* 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编辑过]
----------------解决方案--------------------------------------------------------