Useful C++ Links
This section collects high-value external C++ resources that pair well with this handbook. The cards below are grouped by purpose so you can jump directly to reference material, structured learning, or specific parts of the C++ toolchain.
What you will find here
- language and standard-library references
- structured learning resources and conference material
- online compilers and benchmarking tools
- build systems and package managers
- code quality, debugging, and testing tools
Quick picks
If you only keep a small set open while working, start with these:
Notes
- Use cppreference for fast API lookups.
- Use Compiler Explorer when you want to inspect generated code or compare compilers.
- Use sanitizers and static analysis early rather than only after bugs become expensive.
- Keep one or two reference tabs open, then use the tool pages here to pick the right compiler, build, or testing resource for the job.
Fast navigation guide
- need the exact rule or API: go to the references pages first
- need a fuller explanation or a second teaching style: go to the learning pages
- need to compile, debug, test, or benchmark something: go to the tools pages
This section works best as a decision map, not as a list to read from top to bottom.