当前位置: 代码迷 >> C语言 >> 拜求所有的C语言头文件
  详细解决方案

拜求所有的C语言头文件

热度:400   发布时间:2007-09-18 20:54:17.0
拜求所有的C语言头文件

昨天这个论坛里已经看到过的,当时班上刚好有急事处理,不小心就关了,今天来就忘了在哪里了,哎,看我这脑子~~~~~希望各位高手帮一下忙。

另外,看到很多人提到这个编译器的问题,好像现在大多数人都用GCC,想在这集中一下各自对自己使用编译器的经验和看法。谢谢。

搜索更多相关的解决方案: C语言  文件  

----------------解决方案--------------------------------------------------------
所有头文件这个没有头绪.只不过C编的程序刚开始用的TC.后来改用C-FREE.现在用的DEV-C++.虽然装了VC6.0但是感觉不是很适应所以也就没用
----------------解决方案--------------------------------------------------------

啊~~~头文件就是<stdio.h>这些,昨天有一个链接附在一个帖子里的~~但忘了是那个贴了~~

ls的经验太丰富了~~~呵呵~~~


----------------解决方案--------------------------------------------------------
DEV-C++ 装个这个..几乎都有了

----------------解决方案--------------------------------------------------------

C、传统 C++

#include <assert.h>    //设定插入点
#include <ctype.h>     //字符处理
#include <errno.h>     //定义错误码
#include <float.h>     //浮点数处理
#include <fstream.h>    //文件输入/输出
#include <iomanip.h>    //参数化输入/输出
#include <iostream.h>   //数据流输入/输出
#include <limits.h>    //定义各种数据类型最值常量
#include <locale.h>    //定义本地化函数
#include <math.h>     //定义数学函数
#include <stdio.h>     //定义输入/输出函数
#include <stdlib.h>    //定义杂项函数及内存分配函数
#include <string.h>    //字符串处理
#include <strstrea.h>   //基于数组的输入/输出
#include <time.h>     //定义关于时间的函数
#include <wchar.h>     //宽字符处理及输入/输出
#include <wctype.h>    //宽字符分类

//////////////////////////////////////////////////////////////////////////

标准 C++ (同上的不再注释)

#include <algorithm>    //STL 通用算法
#include <bitset>     //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex>     //复数类
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>      //STL 双端队列容器
#include <exception>    //异常处理类
#include <fstream>
#include <functional>   //STL 定义运算函数(代替运算符)
#include <limits>
#include <list>      //STL 线性列表容器
#include <map>       //STL 映射容器
#include <iomanip>
#include <ios>       //基本输入/输出支持
#include <iosfwd>     //输入/输出系统使用的前置声明
#include <iostream>
#include <istream>     //基本输入流
#include <ostream>     //基本输出流
#include <queue>      //STL 队列容器
#include <set>       //STL 集合容器
#include <sstream>     //基于字符串的流
#include <stack>      //STL 堆栈容器    
#include <stdexcept>    //标准异常类
#include <streambuf>    //底层输入/输出支持
#include <string>     //字符串类
#include <utility>     //STL 通用模板类
#include <vector>     //STL 动态数组容器
#include <cwchar>
#include <cwctype>

using namespace std;

//////////////////////////////////////////////////////////////////////////

C99 增加

#include <complex.h>   //复数处理
#include <fenv.h>    //浮点环境
#include <inttypes.h>  //整数格式转换
#include <stdbool.h>   //布尔环境
#include <stdint.h>   //整型环境
#include <tgmath.h>   //通用类型数学宏


----------------解决方案--------------------------------------------------------

感激涕零!
谢谢LS的朋友!


----------------解决方案--------------------------------------------------------
终于找到了!
----------------解决方案--------------------------------------------------------
  相关解决方案