Summary and Advice
Dear reader, congratulations on finishing this book. Hopefully, by now, you are familiar with the C++ language, the standard library, and various C++ standards basics and features. Learning C++ is no small task. But, it is an achievable and rewarding task. My goal was to present a language and standard library backbone, something every aspiring C++ developer should know.
Where to go from here? I will recommend a few resources and books I feel are essential for every C++ professional.
The go-to Reference
The go-to reference
for the C++ language and the standard library is the cppreference at:
https://www.cppreference.com
It is the number one resource when it comes to C++ and the library. It is an exceptionally well written, community-driven, ...