X 我知道了TIPS:左右滑动导航栏可以查看更多栏目
有谁知道C里面有多少常用的头文件和库文件?把一些高手写的C程序编译时常遇到缺少这种文件。
>> 本文固定链接: http://www.vcgood.com/archives/1770
>> 转载请注明: michaela 2007年08月08日 于 C语言帝国 发表
库头文件一般有如下几个:assert.h, complex.h, ctype.h, errno.h, fenv.h, float.h, inttypes.h, iso646.h, limits.h, locale.h, math.h, setjmp.h, signal.h, stdarg.h, stdbool.h, stddef.h, stdint.h, stdio.h, stdlib.h, string.h, tgmath.h, wchar.h, wctype.h
其他是一些SDK的头文件和库用于网络编程的库和头文件,用于OpenGL编程的库和头文件等,另外还有各种各样方便开发而二次封装的库,比如unix系统编程里有个操作网络的可重入库。这些在网上都有介绍的,你针对某个去找就可以了!
你必须先 登录才能发表评论。
库头文件一般有如下几个:
assert.h, complex.h, ctype.h, errno.h, fenv.h, float.h, inttypes.h, iso646.h, limits.h, locale.h, math.h, setjmp.h, signal.h, stdarg.h, stdbool.h, stddef.h, stdint.h, stdio.h, stdlib.h, string.h, tgmath.h, wchar.h, wctype.h
其他是一些SDK的头文件和库
用于网络编程的库和头文件,用于OpenGL编程的库和头文件等,另外还有各种各样方便开发而二次封装的库,比如unix系统编程里有个操作网络的可重入库。这些在网上都有介绍的,你针对某个去找就可以了!