C and C++C++ - A DialogA free eBook that is commonly linked to from forums. The fact that it is a published book means that it would have been peer reviewed prior to print and therefore the information inside is more reliable and 'correct' then common tutorials that haven't been through the same process. It also contains exercises at the end of each chapter to work on.
Optimizing C++A free eBook on optimisation in C++ focusing on algorithms.
Thinking in C++ Vol 1 and 2A set of free eBooks. The first volume covers the C++ language and the second covers the C++ Standard Library. It unfortunately assumes prior knowledge of C or the extreme basics of C++ otherwise the material is extremely high quality an covers the C++ language thoroughly.
GameDev.net - Organizing Code Files in C and C++A must read for any new C or C++ programmer.
GameDev.net - Bitwise Operations in CTalks about the different numbering systems that are commonly used (binary and hex) and the operators that can be used on them in C or C++.
Top 10 Ways to be Screwed by "C"Ten common mistakes you can do in C.
Stupid C++ Tricks: Adventures in AssertAsserts are an extremely powerful tool for a programmer to have to check that the code is doing what was intended. This article looks at extending that functionality for debugging through macros and how to make them as robust as possible.
Making Wrong Code Look Wrong - Joel on SoftwareOpinion piece on the use of Hungarian notation in code to prevent careless mistakes. Read this with a pince of salt.
EA STL White PaperInteresting paper on the issues of using STL in a games development domain and how EA have attempted to correct it with their own implementation.
Stroustrup: C++ Style and Technique FAQStroustrup's (the creator of C++) preferred C++ style and technique.
C/C++ ReferenceC and C++ library reference with examples.
C++ Frequently Asked QuestionsA list of answers to frequently asked questions in C++. Highly recommended if you are a C++ programmer.
C++ Frequently Questioned AnswersC++ is a very convoluted language and this FQA challenges the answers given in the above FAQ.
Guru of the Week