What is the list of standard headers files in C23

1 Answer

0 votes
// ISO/IEC 9899:2023 (C23) C2023 - 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>
<stdbit.h>    <stdckdint.h>  <stdnoreturn.h>
*/

// Obsolescent headers

/*
<stdalign.h>  <stdbool.h>  <stdnoreturn.h>
*/

 



answered Jul 27, 2024 by avibootz

Related questions

1 answer 125 views
1 answer 107 views
1 answer 119 views
1 answer 110 views
1 answer 127 views
1 answer 102 views
1 answer 123 views
...