What is the list of standard headers files in C11

1 Answer

0 votes
// ISO/IEC 9899:2011 (C11) C2011 - 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>
<stdalign.h>  <stdatomic.h>  <threads.h>  <uchar.h>
<stdnoreturn.h>
*/

 



answered Jul 27, 2024 by avibootz
edited Jul 27, 2024 by avibootz

Related questions

1 answer 98 views
1 answer 96 views
1 answer 106 views
1 answer 100 views
1 answer 111 views
1 answer 96 views
1 answer 112 views
...