C语言的头文件具体啥意思,啥功能,求助

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
#include <windows.h>

include <stdio.h>-----代表标准输入输出函数,在c 语言中需要调用输入输出函数,所以必须包含头文件,这样运行时就不会出错了。
include <stdlib.h>-----代表动态库
include <string.h>-----代表字符串
include <conio.h>-----代表通过控制台进行数据输入和数据输出的函数
include <windows.h>-----代表窗口相关信息
温馨提示:答案为网友推荐,仅供参考
第1个回答  2012-01-02
(1)<stdio.h> 支持文件输入和输出
(2)<stdlib.h> 其他各种声明
(3)<string.h> 支持串函数
(4)通过控制台进行数据输入和数据输出的函数
(5)文件中定义的一些资源我们可以直接使用
相似回答