February 2021
Intermediate to advanced
1312 pages
37h 6m
English
The interface to the C++ Standard Library consists of 98 header files, 21 of which present the C Standard Library. It's often difficult to remember which header files you need to include in your source code, so this appendix provides a brief description of the most useful functionality of each header, organized into eight categories:
The C++ Standard Library includes almost the entire C Standard Library. The header files are generally the same, except for these two points:
<cname> instead of <name.h>.<cname> header files are in the std namespace.The following table lists all C Standard Library headers and provides a summary of their most useful functionality. Note that it's recommended to avoid using C functionality, and instead use equivalent C++ features whenever ...
Read now
Unlock full access