A pointer is a data type that "points to" another value stored in memory using its address.

learn more… | top users | synonyms (1)

483
votes
9answers
102k 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 ...
482
votes
10answers
26k 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 ...
450
votes
3answers
104k 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 ...
410
votes
18answers
152k 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 ...
303
votes
32answers
21k 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 ...
245
votes
12answers
17k views

How many levels of pointers can we have?

How many pointers (*) are allowed in a single variable? Let's consider the following example. int a = 10; int *p = &a; Similarly we can have int **q = &p; int ***r = &q; and so on. ...
219
votes
8answers
51k views

What is a smart pointer and when should I use one?

What is a smart pointer and when should I use one?
152
votes
5answers
24k 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> ...
148
votes
20answers
6k views

What exactly is a C pointer if not a memory address?

In a reputable source about C, the following information is given after discussing the & operator: ... It's a bit unfortunate that the terminology* [address of] *remains, because it confuses ...
145
votes
4answers
98k 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?
136
votes
31answers
14k views

What do people find difficult about C pointers? [closed]

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 ...
129
votes
10answers
51k views

So you think you know pointers? [closed]

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)); ...
117
votes
7answers
91k 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 ...
104
votes
7answers
37k views

What exactly is nullptr?

We now have C++11 with many new features. An interesting and confusing one (at least for me) is the new nullptr. Well, no need anymore for the nasty macro NULL. int* x = nullptr; myclass* obj = ...
100
votes
8answers
13k views

Why do C++ libraries and frameworks never use smart pointers?

I read in a few articles that raw pointers should almost never be used. Instead they should always be wrapped inside smart pointers, whether it's scoped or shared pointers. However, I noticed that ...
96
votes
17answers
5k 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 ...
93
votes
11answers
29k 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 ...
91
votes
8answers
129k 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?
88
votes
5answers
28k 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 ...
88
votes
7answers
16k 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 ...
87
votes
3answers
4k views

Can a pointer to base point to an array of derived objects?

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 ...
76
votes
12answers
5k views

Why are function pointers and data pointers incompatible in C/C++?

I have read that converting a function pointer to a data pointer and vice versa works on most platforms but is not guaranteed to work. Why is this the case? Shouldn't both be simply addresses into ...
76
votes
3answers
4k views

Why does the arrow (->) operator in C exist?

The dot (.) operator is used to access a member of a struct, while the arrow operator (->) in C is used to access a member of a struct which is referenced by the pointer in question. The pointer ...
75
votes
4answers
5k 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 ...
74
votes
9answers
4k views

Why does the use of 'new' cause memory leaks?

I learned C# first, and now I'm starting with C++. As I understand, operator new in C++ is not similar to the one in C#. Can you explain the reason of the memory leak in this sample code? class A { ...
72
votes
5answers
2k 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 ...
71
votes
9answers
27k 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 ...
70
votes
9answers
7k 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 ...
69
votes
4answers
39k views

Typedef function pointer?

I'm learning how to dynamically load DLL's but what I don't understand is this line typedef void (*FunctionFunc)(); I have a few questions. If someone is able answer them I would be grateful. Why ...
66
votes
17answers
37k 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 ...
63
votes
11answers
35k 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 = ...
61
votes
12answers
61k 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 ...
60
votes
10answers
11k 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 ...
60
votes
15answers
2k 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 ...
56
votes
10answers
28k 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 ...
55
votes
10answers
25k 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?
53
votes
5answers
35k 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 ...
52
votes
4answers
4k 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. programmers frequently find it confusing that "this" is a pointer but not a reference. ...
51
votes
23answers
5k 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; ...
51
votes
11answers
5k views

What happens to memory after '\0' in a C string?

Surprisingly simple/stupid/basic question, but I have no idea: Suppose I want to return the user of my function a C-string, whose length I do not know at the beginning of the function. I can place ...
51
votes
18answers
5k 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 ...
49
votes
10answers
37k views

Function Pointers in Java

This may be something common and trivial, but I seem to be having trouble finding a concrete answer. In C# there is a concept of delegates, which relates strongly to the idea of function pointers from ...
49
votes
3answers
1k views

Free memory allocated in a different function?

I'm trying to learn C and I'm currently trying to write a basic stack data structure, but I can't seem to get basic malloc/free right. Here's the code I've been using (I'm just posting a small part ...
48
votes
10answers
13k views

When should I use the new keyword in C++?

I've been using C++ for a short while, and I've been wondering about the new keyword. Simply, should I be using it, or not? 1) With the new keyword... MyClass* myClass = new MyClass(); ...
48
votes
6answers
59k views

How to find the 'sizeof'(a pointer pointing to an array)?

First off, here is some code: int main() { int days[] = {1,2,3,4,5}; int *ptr = days; printf("%u\n", sizeof(days)); printf("%u\n", sizeof(ptr)); return 0; } Is there a way to ...
48
votes
3answers
2k views

Why does this code segfault on 64-bit architecture but work fine on 32-bit?

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; ...
47
votes
19answers
9k 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 ...
46
votes
16answers
2k views

Duplicating objects in Java

I learned that when you modify a variable in Java it doesn't change the variable it was based on int a = new Integer(5); int b = a; b = b + b; System.out.println(a); // 5 as expected ...
46
votes
5answers
1k views

Write-Only pointer type

I'm writing software for an embedded system. We are using pointers to access registers of an FPGA device. Some of the registers are read-only, while others are write-only. The write-only ...
46
votes
7answers
2k 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 ...

1 2 3 4 5 236