What is the list of standard headers files in C99

1 Answer

0 votes
// ISO/IEC 9899:1999 (C99) standard headers

/*
<assert.h>  <limits.h>  <signal.h>   <stdlib.h>
<ctype.h>   <locale.h>  <stdarg.h>   <string.h>
<errno.h>   <math.h>    <stddef.h>   <time.h>
<float.h>   <setjmp.h>  <stdio.h>    <iso646.h>  
<wchar.h>   <wctype.h>  <complex.h>  <inttypes.h>  
<stdint.h>  <tgmath.h>  <fenv.h>     <stdbool.h>
*/

 



answered Jul 27, 2024 by avibootz

Related questions

1 answer 102 views
1 answer 119 views
1 answer 113 views
1 answer 105 views
1 answer 116 views
1 answer 100 views
1 answer 117 views
...