C语言的标准库/保留关键字

发表于:2007-05-25来源:作者:点击数: 标签:保留关键字标准显示语言
显示 C语言的标准库 以下列出由C语言提供的标准函数库,函数库通过#include进行引用。 在C89标准中: assert.h ctype.h errno.h float.h limits.h locale.h math.h setjmp.h signal.h stdarg.h stddef.h stdio.h stdlib.h string.h time.h 在95年的修正版中 is

显示

C语言的标准库

以下列出由C语言提供的标准函数库,函数库通过#include进行引用。

在C89标准中:

  • <assert.h>
  • <ctype.h>
  • <errno.h>
  • <float.h>
  • <limits.h>
  • <locale.h>
  • <math.h>
  • <setjmp.h>
  • <signal.h>
  • <stdarg.h>
  • <stddef.h>
  • <stdio.h>
  • <stdlib.h>
  • <string.h>
  • <time.h>

在95年的修正版中

  • <iso646.h>
  • <wchar.h>
  • <wctype.h>

在C99中增加了六个函数库

  • <complex.h>
  • <fenv.h>
  • <inttypes.h>
  • <stdbool.h>
  • <stdint.h>
  • <tgmath.h>

C语言的保留关键字

charshortintunsigned
longfloatdoublestruct
unionvoidenumsigned
constvolatiletypedefauto
registerstaticexternbreak
casecontinuedefaultdo
elseforgotoif
returnswitchwhilesizeof



原文转自:http://www.ltesting.net

评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)