Home > Article > Backend Development > Which C Standard Library Headers Explicitly Include Others?
Which Headers in the C Standard Library Include Others?
In general, programmers should not assume that one C standard library header will include another. However, there are certain exceptions where one header is explicitly required to include or provide functionality of another.
Included Headers
Functions Available Without Explicit Header Inclusion
The functions begin, end, their C 14 c-, r-, and cr- versions, and the C 17 functions size, empty, and data are defined in
The above is the detailed content of Which C Standard Library Headers Explicitly Include Others?. For more information, please follow other related articles on the PHP Chinese website!