Tagged Questions
A pointer is a data type that "points to" another value stored in memory using its address.
275
votes
8answers
17k 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 ...
210
votes
14answers
11k views
In C++, why should `new` be used as little as possible?
I stumbled upon the Stack Overflow question Memory leak with std::string when using std::list?. One of the first posters says:
Stop using new so much. I can't see
any reason you used new ...
210
votes
8answers
44k 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 ...
200
votes
4answers
55k 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 ...
193
votes
30answers
13k 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 C or C++? Are there any tools or thought processes that helped you understand how pointers ...
163
votes
21answers
78k views
What are the differences 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 ...
118
votes
29answers
11k views
What do people find difficult about C pointers?
From the number of questions posted here, it's clear that people have some pretty fundemental issues when getting their heads around pointers and pointer arithmetic.
I'm curious to know why. They've ...
114
votes
12answers
50k 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));
...
85
votes
17answers
3k views
What's the point of const pointers?
I'm not talking about pointers to const values, but const pointers themselves.
I'm learning C and C++ beyond the very basic stuff and just until today I realized that pointers are passed by value to ...
70
votes
4answers
3k views
Why does this code crash?
I went to a job interview today and was given this interesting question.
Besides the memory leak and the fact there is no virtual dtor, why does this code crash?
#include <iostream>
//besides ...
69
votes
5answers
3k views
How do I use arrays in C++?
C++ inherited arrays from C where they are used virtually everywhere. C++ provides abstractions that are easier to use and less error-prone (std::vector<T> since C++98 and std::array<T, n> ...
66
votes
9answers
11k views
What is a smart pointer and when should I use one?
What is a smart pointer and when should I use one?
66
votes
3answers
47k 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?
61
votes
5answers
1k views
How is “int* ptr = int()” value initialization not illegal?
The following code (taken from here):
int* ptr = int();
compiles in Visual C++ and value-initializes the pointer.
How is that possible? I mean int() yields an object of type int and I can't assign ...
58
votes
15answers
1k views
When is an integer<->pointer cast actually correct?
The common folklore says that:
The type system exists for a reason. Integers and pointers are distinct types, casting between them is a malpractice in the majority of cases, may indicate a design ...
44
votes
10answers
3k views
What is the difference between str==NULL and str[0]=='\0' in C?
I want to know the difference between str == NULL and str[0] == '\0':
int convert_to_float(char *str, double *num)
{
if ((str == NULL) || (str[0] == '\0'))
return(-1);
*num = ...
42
votes
19answers
2k views
Why is address zero used for null pointer?
In C (or C++ for that matter), pointers are special if they have the value zero: I am adviced to set pointers to zero after freeing their memory, because it means freeing the pointer again isn't ...
41
votes
7answers
6k views
size_t vs. intptr_t
The C standard guarantees that size_t is a type that can hold any array index. This means that, logically, size_t should be able to hold any pointer type. I've read on some sites that I found on the ...
39
votes
8answers
966 views
Does const-correctness give the compiler more room for optimization?
I know that it improves readability and makes the program less error-prone, but how much does it improve the performance?
And on a side note, what's the major difference between a reference and a ...
39
votes
23answers
4k 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 using it. Why would I do the following?
Pixel p;
p.x = 2;
...
39
votes
5answers
31k views
Deleting Objects in JavaScript
I'm a bit confused with JavaScript's delete operator. Take the following piece of code:
var obj = {
helloText: "Hello World!"
};
var foo = obj;
delete obj;
After this piece of code has been ...
38
votes
5answers
2k views
Why 'this' is a pointer and not a reference?
I was reading the answers to this question C++ pros and cons and got this doubt while reading the comments. Why the this is a pointer a not a reference ? Any particular reason for making it a pointer?
...
37
votes
8answers
53k views
C pointer to array/array of pointers disambiguation
What is the difference between the following declarations:
int* arr1[8];
int (*arr2)[8];
int *(arr3[8]);
What is the general rule for understanding more complex declarations?
36
votes
5answers
1k views
Which kind of pointer do I use when?
Ok, so the last time I wrote C++ for a living, std::auto_ptr was all the std lib had available, and boost::shared_ptr was all the rage. I never really looked into the other smart pointer types boost ...
35
votes
11answers
1k views
C: Why do unassigned pointers point to unpredictable memory and NOT point to NULL?
A long time ago I used to program in C for school. I remember something that I really hated about C: unassigned pointers do not point to NULL.
I asked many people including teachers why in the world ...
35
votes
6answers
80k views
What does this error mean: “error: expected specifier-qualifier-list before 'type_name'”?
I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be ...
34
votes
11answers
7k views
Passing by reference in C
If C does not support passing a variable by reference, why does this work?
#include <stdio.h>
void f(int *j) {
(*j)++;
}
int main() {
int i = 20;
int *p = &i;
f(p);
printf("i = ...
34
votes
5answers
7k views
How to pass objects to functions in C++?
I am new to C++ programming, but I have experience in Java. I need guidance on how to pass objects to functions in C++.
Do I need to pass pointers, references, or non-pointer and non-reference ...
34
votes
6answers
9k views
What exactly is nullptr in C++0x?
Most of C++ programmers are waiting for C++0x. An interesting feature and a confusing one (at least for me) is the new nullptr.
Well, no need anymore for the nasty macro NULL.
int* x = nullptr;
...
33
votes
5answers
17k views
Pointers, smart pointers or shared pointers?
I am programming with normal pointers, but I have heard about libraries like Boost that implement smart pointers. I have also seen that in Ogre3D rendering engine there is a deep use of shared ...
33
votes
9answers
14k views
C++ STL: should I store entire objects, or pointers to objects?
Designing a new system from scratch. I'll be using the STL to store lists and maps of certain long-live objects.
Question: Should I ensure my objects have copy constructors and store copies of ...
32
votes
5answers
1k views
Why is the dereference operator (*) also used to declare a pointer?
I'm not sure if this is a proper programming question, but it's something that has always bothered me, and I wonder if I'm the only one.
When initially learning C++, I understood the concept of ...
32
votes
3answers
851 views
segfault : interview question/C puzzle
I came across the following C puzzle:
Q: Why does the following program segfault on IA-64, but work fine on IA-32?
int main()
{
int* p;
p = (int*)malloc(sizeof(int));
*p = 10;
...
32
votes
8answers
3k views
C programming : How does free know how much to free?
In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to ...
32
votes
10answers
13k 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 ...
31
votes
12answers
11k views
Pointer vs. Reference
What would be better practice when giving a function the original variable to work with:
unsigned long x = 4;
void func1(unsigned long& val) {
val = 5;
}
func(x);
or:
void func2(unsigned ...
30
votes
8answers
1k views
Why is it a memory leak? What could I catch if I shall use such things in C++?
I wonder, if I allocate memory for the pointer of some class/struct, why shall I get the memory leak?
For example:
class A { ... };
struct B { ... };
A *object1 = new A();
B object2 = *(new B());
...
30
votes
11answers
1k views
What is the point of function pointers?
I have trouble seing the utility of the function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a ...
30
votes
10answers
9k views
Should I use char** argv or char* argv[] in C?
I'm just learning C and was wondering which one of these I should use in my main method. Is there any difference?
Edit: So which one is more common to use?
30
votes
12answers
34k views
How does delete[] know it's an array? (C++)
Alright, I think we all agree that what happens with the following code is undefined, depending on what is passed
void deleteForMe(int* pointer)
{
delete[] pointer;
}
The pointer could be all ...
29
votes
6answers
1k views
C++: When to use References vs. Pointers
I understand the syntax and general semantics of pointers versus references, what I can't decide is when is it more-or-less appropriate to use references or pointers in an API?
Naturally some ...
28
votes
6answers
1k views
sizeof taking two arguments
In C.1.3 of the C++ IS (2003. It's in the C++11 IS, too), the standard points out a difference between ISO C and C++; namely, for
char arr[100];
sizeof(0, arr) returns sizeof(char*) in C, but 100 ...
28
votes
12answers
14k views
How can I get the size of an array from a pointer in C?
I've allocated an "array" of mystruct of size n like this:
if (NULL == (p = calloc(sizeof(struct mystruct) * n,1))) {
/* handle error */
}
Later on, I only have access to p, and no longer have n. ...
27
votes
9answers
4k views
what does malloc(0) return?
What does malloc(0) returns? Would the answer be same for realloc(malloc(0),0) ?
#include<stdio.h>
#include<malloc.h>
int main()
{
printf("%p\n", malloc(0));
...
26
votes
15answers
2k 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 ...
26
votes
12answers
13k views
Why use pointers?
I know this is a really basic question, but I've just started with some basic C++ programming after coding a few projects with high-level languages.
Basically I have three questions:
Why use ...
25
votes
18answers
3k views
Is it good practice to NULL a pointer after deleting it?
I'll start out by saying, use smart pointers and you'll never have to worry about this.
What are the problems with the following code?
Foo * p = new Foo;
// (use p)
delete p;
p = NULL;
This was ...
25
votes
13answers
4k views
What are potential dangers when using boost::shared_ptr?
What are some ways you can shoot yourself in the foot when using boost::shared_ptr? In other words, what pitfalls do I have to avoid when I use boost::shared_ptr?
25
votes
14answers
7k 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 ...
24
votes
4answers
823 views
const char* and char const* - are they the same?
From my understanding, const modifiers should be read from right to left. From that, I get that:
const char*
is a pointer whose char elements can't be modified, but the pointer itself can, and
...