C语言里面输入命令的头文件是什么啊

把所有头文件的用法说出来的优先

C/C++头文件一览 #include <assert.h>    //设定插入点 #include <ctype.h>     //字符处理 #include <errno.h>     //定义错误码 #include <float.h>     //浮点数处理 #include <iso646.h> //对应各种运算符的宏 #include <limits.h>    //定义各种数据类型最值的常量 #include <locale.h>    //定义本地化C函数 #include <math.h>     //定义数学函数 #include <setjmp.h> //异常处理支持 #include <signal.h> //信号机制支持 #include <stdarg.h> //不定参数列表支持 #include <stddef.h> //常用常量 #include <stdio.h>     //定义输入/输出函数 #include <stdlib.h>    //定义杂项函数及内存分配函数 #include <string.h>    //字符串处理 #include <time.h>     //定义关于时间的函数 #include <wchar.h>     //宽字符处理及输入/输出 #include <wctype.h>    //宽字符分类 更多头文件请看:http://blog.csdn.net/chenqiang35/archive/2009/02/11/3877756.aspx
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-09-12
C里面执行DOS命令使用的函数是: int system(const char *) 其头文件为process.h,但是在stdio.h里面好像也有引用,只要包含stdio.h就可以使用了。
第2个回答  2013-09-12
标准的输入输出头文件就是#include<stdio.h>
第3个回答  2020-08-05
输入输出和标准错误都在stdio.h这个
头文件

math.h是一些和数学相关的函数如fabs(),sin()等等。string.h是一些和
字符串操作
相关的,比如strcpy(),strcat()。stdlib.h包含一些和
链表
相关的函数。还有就是reg51.h调用汇编相关的,time.h和时间相关的一些函数,常用就这些了。
相似回答