Learning C or C++
Here are various resources for learning C and C++. Since C++ is almost a superset of C, everything here is relevant to C++.
- Learn X in Y minutes where X=C
- cppreference.com
- Everything I wish I knew when learning C by Tom M
- cdecl – convert C declaration gibberish to English
- Microsoft’s C and C++ documentation
- C++ Core Guidelines by Bjarne Stroustrup & Herb Sutter
- C Preprocessor tricks, tips, and idioms by Paul Fultz II
C++ only
- Learn X in Y minutes where X=C++
- C++ Roadmap - roadmap.sh
- LearnCpp.com
- cplusplus.com
- How to Make Flappy Bird with C++ by Marcos Oliveira
- The C++ Iceberg
- Initialisation in C++17 – the matrix by Timur Doumler
- C++ Cheat Sheets & Infographics by André Müller
- const vs constexpr vs consteval vs constinit in C++20