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

learn more… | top users | synonyms (1)

14
votes
8answers
6k views

difference between a pointer and reference parameter?

Are these the same: int foo(bar* p) { return p->someInt(); } and int foo(bar& r) { return r.someInt(); } Ignore the null pointer potential. Are these two functions functionally ...
14
votes
9answers
723 views

Can a C compiler generate an executable 64-bits where pointers are 32-bits?

Most programs fits well on <4GB address space but needs to use new features just available on x64 architecture. Are there compilers/platforms where I can use x64 registers and specific ...
14
votes
11answers
740 views

C++: What are scenarios where using pointers is a “Good Idea”(TM)? [duplicate]

Possible Duplicate: Common Uses For Pointers? I am still learning the basics of C++ but I already know enough to do useful little programs. I understand the concept of pointers and the ...
14
votes
2answers
505 views

Why is “operator delete” invoked when I call “delete” on a null pointer?

While reading answers to this question I noticed that answers (this for example) imply that operator delete can be called even when delete statement is executed on a null pointer. So I wrote a small ...
14
votes
3answers
381 views

Why does c++ pointer * associate to the variable declared, not the type?

Why was C++ designed such that the correct way to declare two int *s on the same line is int *x, *y; not int* x,y; I know some people think you should avoid either form and declare every ...
14
votes
4answers
2k views

Literal string initializer for a character array

In the following rules for the case when array decays to pointer: An lvalue [see question 2.5] of type array-of-T which appears in an expression decays (with three exceptions) into a pointer to ...
14
votes
8answers
25k views

Printing pointers in C

I was trying to understand something with pointers, so I wrote this code: #include <stdio.h> int main(void) { char s[] = "asd"; char **p = &s; printf("The value of s is: ...
14
votes
4answers
4k views

When to use pointers in C#/.NET?

I know C# gives the programmer the ability to access, use pointers in an unsafe context. But When is this needed? At what circumstances, using pointers becomes inevitable? Is it only for performance ...
14
votes
5answers
9k views

What is the default constructor for C++ pointer?

I have code like this: class MapIndex { private: typedef std::map<std::string, MapIndex*> Container; Container mapM; public: void add(std::list<std::string>& values) ...
14
votes
4answers
4k views

What's the point of having pointers in Go?

I know that pointers in Go allow mutation of a function's arguments, but wouldn't it have been simpler if they adopted just references (with appropriate const or mutable qualifiers). Now we have ...
14
votes
4answers
369 views

C# ref is it like a pointer in C/C++ or a reference in C++?

I'm working with the ref and don't understand clearly "Is it like a pointer as in C/C++ or it's like a reference in C++?" Why did I ask such a weak question as you thought for a moment? Because, when ...
14
votes
5answers
334 views

Why can operator-> be overloaded manually?

Wouldn't it make sense if p->m was just syntactic sugar for (*p).m? Essentially, every operator-> that I have ever written could have been implemented as follows: Foo::Foo* operator->() { ...
14
votes
3answers
2k views

delete objects of incomplete type

This one made me think: class X; void foo(X* p) { delete p; } How can we possibly delete p if we do not even know whether X has visible destructor? g++ 4.5.1 gives three warnings: warning: ...
14
votes
5answers
2k views

When to return a pointer, scalar and reference in C++?

I'm moving from Java to C++ and am a bit confused of the language's flexibility. One point is that there are three ways to store objects: A pointer, a reference and a scalar (storing the object itself ...
14
votes
4answers
5k views

zero length arrays vs. pointers

EDIT: apparently some of this isn't allowed/has changed in various C standards. For my own hypothetical benefit, let's pretend we're using gcc test.c with no standard or warning options. In ...
13
votes
17answers
2k views

What is the origin of the term “baller” which means “pointer”? [closed]

I've seen the term "baller" used in a couple of C++ interview tests. It means "pointer" as best as I can tell from questions like "Describe the difference between a baller and a reference." I thought ...
13
votes
7answers
3k views

Does Function pointer make the program slow?

I read about function pointers in C. And everyone said that will make my program run slow. Is it true? I made a program to check it. And I got the same results on both cases. (measure the time.) So, ...
13
votes
7answers
1k views

Whats the problem with int *p; *p=23;

Yesterday in my interview I was asked this question. (At that time I was highly pressurized by so many abrupt questions). int *p; *p=23; printf("%d",*p); Is there any problem with this code? I ...
13
votes
10answers
8k views

Efficiency: arrays vs pointers

Memory access through pointers is said to be more efficient than memory access through an array. I am learning C and the above is stated in K&R. Specifically they say Any operation that can ...
13
votes
11answers
2k views

C++ difference between reference, objects and pointers

This is a question from an exam in an advanced course in OOP, taught in C++ (in TAU university, this semester): Q: What is the difference between a C++ pointer and a reference? A. A reference ...
13
votes
6answers
971 views

Semantics of char a[]

I recently embarrassed myself while explaining to a colleague why char a[100]; scanf("%s", &a); // notice a & in front of 'a' is very bad and that the slightly better way to do it is: char ...
13
votes
10answers
650 views

Why do you need pointers in this situation? [duplicate]

Possible Duplicate: Learning C++: polymorphism and slicing This is building off a question I asked before. The classes look like this: class Enemy { public: void sayHere() ...
13
votes
6answers
23k views

Returning a pointer to a vector element in c++

I have a vector of myObjects in global scope. I have a method which uses a std::vector<myObject>::const_iterator to traverse the vector, and doing some comparisons to find a specific element. ...
13
votes
6answers
15k views

How do you pass a member function pointer?

I am trying to pass a member function within a class to a function that takes a member function class pointer. The problem I am having is that I am not sure how to properly do this within the class ...
13
votes
11answers
5k views

Should you use pointers (unsafe code) in C#?

Should you use pointers in your C# code? What are the benefits? Is it recommend by The Man (Microsoft)?
13
votes
3answers
458 views

a pointer about *argv[]

This is my main.c ...... int main(int argc, char **argv) { init_arg(&argc, &argv); ...... } This is my init_arg.c ...... void init_arg(int *argc, char ***argv) { ...
13
votes
5answers
349 views

Passing by pointer

I am confused between these two functions: void Swap_byPointer1(int *x, int *y){ int *temp=new int; temp=x; x=y; y=temp; } void Swap_byPointer2(int *x, int *y){ int *temp=new ...
13
votes
7answers
5k views

Mis-aligned pointers on x86

Can someone provide an example were casting a pointer from one type to another fails due to mis-alignment? In the comments to this answer, bothie states that doing something like char * foo = ...; ...
13
votes
2answers
12k views

How can I initialize an array of pointers to structs?

Is it possible to initialize an array of pointers to structs? Something like: struct country_t *countries[] = { {"United States of America", "America"}, {"England", "Europe"}, ...
13
votes
4answers
400 views

How to replace pointers with references in C++?

"I am sure there are tens of questions with the same title. Many of them are duplicate. Mine might be duplicate too, but I couldn't find any. So I try to make it very neat, short and simple." I have ...
13
votes
6answers
5k views

Pointers to elements of std::vector and std::list

I'm having a std::vector with elements of some class ClassA. Additionally I want to create an index using a std::map<key,ClassA*> which maps some key value to pointers to elements contained in ...
13
votes
7answers
275 views

Why doesn't C++ enforce const on pointer data? [duplicate]

Possible Duplicate: Why isn't the const qualifier working on pointer members on const objects? Consider the following class that has a pointer member int *a. The const method constMod ...
13
votes
5answers
5k views

Pointer address in a C multidimensional array

I'm messing around with multidimensional arrays and pointers. I've been looking at a program that prints out the contents of, and addresses of, a simple array. Here's my array declaration: int ...
13
votes
5answers
264 views

Dereferencing a pointer to out-of-scope static data in C

Disclaimer: This question is strictly academic. The example I'm about to give is probably bad style. Suppose in C I write a subroutine of this form: char *foo(int x) { static char bar[9]; ...
13
votes
7answers
342 views

How do I value-initialize a Type* pointer using Type()-like syntax?

Variables of built-in types can be value-initialized like this: int var = int(); this way I get the default value of int without hardcoding the zero in my code. However if I try to do similar ...
13
votes
3answers
242 views

Once an array-of-T has decayed into a pointer-to-T, can it ever be made into an array-of-T again?

So let us say I have an array: int a[3] = { 1, 2, 3 }; Now if I were to check the type of 'a', on my machine I get: cout<<typeid(a).name(); // prints 'A3_i' Now if I take the address of ...
13
votes
4answers
419 views

Tutorial on C pointers and arrays from a Java standpoint

I'm currently a freshman in college, majoring in CS. I'm just about done with my "Intro to Computer Programming" class. I like it and feel like I'm learning a good bit. A couple days ago, I read ...
13
votes
1answer
332 views

How to recursively dereference pointer (C++03)?

I'm trying to recursively dereference a pointer in C++. If an object is passed that is not a pointer (this includes smart pointers), I just want to return the object itself, by reference if ...
13
votes
1answer
330 views

What is a synthetic pointer?

I was debugging some C++ code in GDB and I found out that some calls were making use of a so-called "synthetic pointer". Googling around did not produce any meaningful result. Searching here on SO, ...
13
votes
4answers
486 views

Propagate constness to data pointed by member variables

It is often quite confusing to C++ newcomers that const member functions are allowed to call non-const methods on objects referenced by the class (either by pointer or reference). For example, the ...
12
votes
15answers
1k views

What do I need to know about memory in C++?

I've been doing my best to learn C++ but my previous training will fall short in one major issue: memory management. My primary languages all have automatic garbage collection, so keeping track of ...
12
votes
12answers
2k views

what does ** mean in C

What does it mean when a object has 2 asterisks at the beginning? **variable
12
votes
4answers
8k views

Differences between unique_ptr and shared_ptr [duplicate]

Possible Duplicates: pimpl: shared_ptr or unique_ptr smart pointers (boost) explained Could someone explain differences between shared_ptr and unique_ptr?
12
votes
15answers
2k views

Why are references not reseatable in C++

C++ references have two properties: They always point to the same object. They can not be 0. Pointers are the opposite: They can point to different objects. They can be 0. Why is there no ...
12
votes
9answers
1k views

Usage of Smart Pointers as a Programming Standard?

More and more I hear, that I should use smart pointers instead of naked pointers, despite I have effective memory leak system implemented. What is the correct programming approach on using smart ...
12
votes
8answers
620 views

C difference between *[] and **

This might be a bit of a basic question, but what is the difference between writing char * [] and char **? For example, in main,I can have a char * argv[]. Alternatively I can use char ** argv. I ...
12
votes
4answers
1k views

Javascript pointer/reference craziness. Can someone explain this?

Javascript passes objects by reference. This makes perfect sense. But once you start manipulating those objects, everything acts in a way that seem unintuitive. Let me offer an example: var a, b; a ...
12
votes
10answers
2k views

Pointer implementation details in C

I would like to know architectures which violate the assumptions I've listed below. Also, I would like to know if any of the assumptions are false for all architectures (that is, if any of them are ...
12
votes
7answers
1k views

Why is comparing against “end()” iterator legal?

According to C++ standard (3.7.3.2/4) using (not only dereferencing, but also copying, casting, whatever else) an invalid pointer is undefined behavior (in case of doubt also see this question). Now ...
12
votes
4answers
20k views

Passing an array of strings as parameter to a function in C

I want a simple function that receives a string and returns an array of strings after some parsing. So, this is my function signature: int parse(const char *foo, char **sep_foo, int *sep_foo_qty) { ...

1 3 4 5 6 7 236