Which ones are the most frecuently used standard and no standard libraries (besides iostream and string) in a C++ program? Where can I get some good language reference info with examples that gets deeper on this? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Which ones are the most frecuently used standard and no standard libraries (besides iostream and string) in a C++ program? Where can I get some good language reference info with examples that gets deeper on this?

I know that this is a introductory course to C++, but it should include some lessons about what you can do with the standard libraries, the most common used (besides iostream) and where to get information on this topic... what do you think?

28th Jul 2016, 10:46 AM
Nelson Urbina
Nelson Urbina - avatar
2 Answers
+ 1
Boost is a non-standard library that finds its way into almost all C++ software. Many of the changes in of the standard library in the newer standards as C++11 and 14 wer first conceived in the Boost libraries and then later slightly modified and put into the standard library.
28th Jul 2016, 1:53 PM
Stefan
Stefan - avatar
0
#include <cstdlib>
28th Jul 2016, 12:47 PM
Pradeep Mishra
Pradeep Mishra - avatar