165
votes
14answers
7k views
What is the name of this operator: “-->”?
After reading this post on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:
#include <stdio.h>
int main()
{
int x = …
100
votes
43answers
8k views
C++ blogs that you regularly follow?
What are all the c++ blogs that you follow
Please add one url for one posting.
91
votes
22answers
4k views
The Definitive C++ Book Guide and List
After more than a few questions about deciding on C++ books I thought we could make a better community wiki version. Providing QUALITY books and an approximate skill level. Maybe we can add a short …
84
votes
15answers
13k views
How do you set, clear and toggle a single bit in C?
How to set, clear and toggle a bit in C?
81
votes
6answers
5k views
In C arrays why is this true? a[5] == 5[a]
As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a]
Joel says that it's because of pointer …
68
votes
37answers
3k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The …
58
votes
32answers
3k views
Why is C++ relatively “harder” to use/bad choice for a beginner?
Most opinions on Stack Overflow seem to voice a similar opinion: C++ is "harder" to use and it is a "bad" choice for a beginner. Speaking as someone who has been learning C++ as a first language, on …
55
votes
50answers
12k views
Hidden Features of C++?
No C++ love when it comes to the "hidden features of" line of questions? Figured I would throw it out there. What are some of the hidden features of C++?
54
votes
29answers
3k views
What are the barriers to understanding pointers and what can be done to overcome them?
Why are pointers such a leading factor of confusion for many new, and even old, college level students in the C/C++ language? Are there any tools or thought processes that helped you understand how …
52
votes
60answers
6k views
What is the worst real-world macros/pre-processor abuse you’ve ever come across?
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really entertaining. The goal …
52
votes
27answers
5k views
Does the D programming language have a future?
I stumbled several times over D and really asked myself why it isn't more popular.
D is a systems programming language. Its focus is on combining the power and high performance of C and C++ with …
46
votes
40answers
5k views
Are memory leaks ever ok?
Is it ever acceptable to have a memory leak in your C or C++ application?
What if you allocate some memory and use it until the very last line of code in your application (for example, a global …
46
votes
8answers
3k views
What Does {0} Mean in C?
When {0} is used to initialize an object in C/C++, what does it mean? I can't find any references to {0} anywhere, and because of the curly braces Google searches are not helpful.
Example code:
…
45
votes
23answers
3k views
What is Boost missing?
After spending most of my waking time on Stack Overflow, for
better or for worse, I've come to notice how 99% of the C++
questions are answered with "use boost::wealreadysolvedyourproblem",
but …
44
votes
25answers
4k views
Learning game programming
Edit: For anyone reading this now, I started a blog about my endeavor to learn game programming - you'll find it at learning-game-programming.com, I'm trying to post about things that are useful for …
