I wanted to share useful websites and resources for C++ that I use, add yours!
Hi everyone, here is a list of websites that I use for C++:
https://godbolt.org/: compiler explorer, allows you to quickly test code and see the disassembly, integrates many libraries and tools (PVS, clang-tidy, ...). It can even do CMake projects with multiple files!
One more I forgot is https://cppinsights.io : this online tool takes C++ code and output C++ code, the goal being to make the "magic" of the compiler visible (for example for(auto vi : std::vector...) is expended to iterators and the tool make it visible). It can help sometime when struggling with a difficult to understand issue.