Tagged Questions

156
votes
15answers
6k 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 = …
84
votes
15answers
12k views

How do you set, clear and toggle a single bit in C?

How to set, clear and toggle a bit in C?
80
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 …
76
votes
71answers
8k views

Should I learn C?

Original Question: Should I Learn C? In the theme of the stackoverflow podcast, here's a fun question: should I learn C? I expect Jeff & Joel will have something to say on this. Some info on my …
60
votes
32answers
4k views

When is assembler faster than C?

One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. …
56
votes
45answers
9k views

Hidden features of C

I know there is a standard behind all C compiler implementations, so there should be no hidden features. Despite that, I am sure all C developers have hidden/secret tricks they use all the time.
53
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 …
46
votes
40answers
4k 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: …
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 …
40
votes
6answers
2k views

Why isn’t sizeof for a struct equal to the sum of sizeof of each member?

Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
38
votes
30answers
3k views

What is your most useful C/C++ snippet?

Hello all, It seems that every project has an "util" module with various code snippets used throughout other files and which don't fit any particular pattern. I want to improve my "util" library, so …
38
votes
10answers
6k views

Regular cast vs. static_cast vs. dynamic_cast

I've been writing C and C++ code for almost twenty years, but there's one aspect of these languages that I've never really understood. I've obviously used regular casts (i.e. MyClass *m = (MyClass …
37
votes
17answers
3k views

Why can’t variables be declared in a switch statement?

I've always wondered this - why can't you declare variables after a case label in a switch statement? In C++ you can declare variables pretty much anywhere (and declaring them close to first use is …

1 2 3 4 5 492 next
15 30 50 per page