82
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 …
54
votes
29answers
4k 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 …
39
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
16answers
10k views
Difference between pointer variable and reference variable in C++
I know references are syntactic sugar, so easier code to read and write :)
But what are the differences?
Summary from answers and links below:
A pointer can be re-assigned any number of times …
28
votes
6answers
9k views
When should static_cast, dynamic_cast and reinterpret_cast be used?
I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer …
26
votes
22answers
2k views
Why not use pointers for everything in C++
suppose that I define some class
class Pixel {
public:
Pixel(){ x=0; y=0;};
int x;
int y;
}
Then write some code about it. Why would I do
Pixel p;
p.x = 2;
p.y = 5;
Coming from a Java …
25
votes
10answers
1k views
So you think you know pointers?
I was shown this recently, and thought this was a really cool piece of code. Assume 32-bit architecture.
#include <stdio.h>
int main(void) {
int x[4];
printf("%p\n", (void*) (x));
…
20
votes
5answers
6k views
How do you pass a function as a parameter in C?
I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
19
votes
14answers
975 views
How many of you are aware that its safe to delete a NULL pointer?
I just realized after years of writing C++, that I can safely delete a NULL pointer. So I figure, I'm not the only one that wasn't aware of this. Now I feel silly for all my
if(p) delete p;
code …
18
votes
14answers
3k views
Is there any way to determine the size of a C++ array programmatically? And if not, why?
This question was inspired by a similar question: How does delete[] “know” the size of the operand array?
My question is a little different: Is there any way to determine the size of a C++ array …
15
votes
6answers
761 views
Why does this C code work?
In ANSI C, offsetof is defined as below.
#define offsetof(st, m) \
((size_t) ( (char *)&((st *)(0))->m - (char *)0 ))
Why won't this throw a segmentation fault since we are dereferencing …
15
votes
22answers
2k views
What is the real difference between Pointers and References?
AKA - What's this obsession with pointers?
Having only really used modern, object oriented languages like ActionScript, Java and C#, I don't really understand the importance of pointers and what you …
13
votes
7answers
2k views
Why can’t I convert ‘char**’ to a ‘const char* const*’ in C?
The following code snippet (correctly) gives a warning in C and an error in C++ (using gcc & g++ respectively, tested with versions 3.4.5 and 4.2.1; MSVC does not seem to care):
char **a;
const …
12
votes
8answers
2k views
C++: Pointer to class data member
I came across this strange code snippet which compiles fine:
class Car
{
public:
int speed;
};
int main()
{
int Car::*pSpeed = &Car::speed;
return 0;
}
Why does C++ have this …
12
votes
14answers
1k views
When teaching C, is it better to teach arrays before or after pointers?
For those of you with curriculum development experience: what is the best strategy regarding arrays?
I have seen some schools that teach arrays after variables and control structures, often before …
