C标准库的头文件到底有多少个?
看了那个《C标准库》,是说15个,看网文弄出一大堆,谢谢指教
[解决办法]
帮你顶
[解决办法]
C99的话,是24个
B.1 Diagnostics <assert.h> . . . . . . . . . . . . . . . . . . 418
B.2 Complex <complex.h> . . . . . . . . . . . . . . . . . . . 418
B.3 Character handling <ctype.h> . . . . . . . . . . . . . . . . 420
B.4 Errors <errno.h> . . . . . . . . . . . . . . . . . . . . . 420
B.5 Floating-point environment <fenv.h> . . . . . . . . . . . . . 420
B.6 Characteristics of floating types <float.h> . . . . . . . . . . . 421
B.7 Format conversion of integer types <inttypes.h> . . . . . . . . 421
B.8 Alternative spellings <iso646.h> . . . . . . . . . . . . . . . 422
B.9 Sizes of integer types <limits.h> . . . . . . . . . . . . . . 422
B.10 Localization <locale.h> . . . . . . . . . . . . . . . . . . 422
B.11 Mathematics <math.h> . . . . . . . . . . . . . . . . . . . 422
B.12 Nonlocal jumps <setjmp.h> . . . . . . . . . . . . . . . . 427
B.13 Signal handling <signal.h> . . . . . . . . . . . . . . . . . 427
B.14 Variable arguments <stdarg.h> . . . . . . . . . . . . . . . 427
B.15 Boolean type and values <stdbool.h> . . . . . . . . . . . . 427
B.16 Common definitions <stddef.h> . . . . . . . . . . . . . . . 428
B.17 Integer types <stdint.h> . . . . . . . . . . . . . . . . . . 428
B.18 Input/output <stdio.h> . . . . . . . . . . . . . . . . . . 428
B.19 General utilities <stdlib.h> . . . . . . . . . . . . . . . . 430
B.20 String handling <string.h> . . . . . . . . . . . . . . . . . 432
B.21 Type-generic math <tgmath.h> . . . . . . . . . . . . . . . 433
B.22 Date and time <time.h> . . . . . . . . . . . . . . . . . . 433
B.23 Extended multibyte/wide character utilities <wchar.h> . . . . . . 434
B.24 Wide character classification and mapping utilities <wctype.h> . . . 436
[解决办法]
看网文弄出一大堆
这个是一些编译器特有的。。。
要搜就搜C89或C99标准的头文件。。。
[解决办法]
u p
[解决办法]
C89 15个
The standard headers are
<assert.h> <locale.h> <stddef.h>
<ctype.h> <math.h> <stdio.h>
<errno.h> <setjmp.h> <stdlib.h>
<float.h> <signal.h> <string.h>
<limits.h> <stdarg.h> <time.h>
[解决办法]