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

learn more… | top users | synonyms (1)

23
votes
4answers
3k views

C# memory management: unsafe keyword and pointers

What are the consequences (positive/negative) of using the unsafe keyword in C# to use pointers? For example, what becomes of garbage collection, what are the performance gains/losses, what are the ...
22
votes
8answers
15k views

Simulating Pointers in Python

I'm trying to cross compile an in house language(ihl) to Python. One of the ihl features is pointers and references that behave like you would expect from C or C++. For instance you can do this: a ...
22
votes
5answers
8k views

What is double star?

So, I saw this: error:(NSError **)error in the apple doc's. Why two stars? What is the significance?
22
votes
7answers
2k views

freeing a null pointer

What happens inside memory if we try to free a pointer which is pointing to NULL? Is that ever valid? Why does it not show any warning/error messages?
22
votes
6answers
1k 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 ...
22
votes
9answers
9k views

What is the difference between a C# Reference and a Pointer?

Sorry for such a newbie question but there is something I do not quite understand the difference between a C# reference and a pointer. They both point to a place in memory don't they? The only ...
22
votes
2answers
6k views

How to cast/convert pointer to reference in C++

How can I pass a pointer (Object *ob) to a fuction which prototype is void foo(Object &) ?
21
votes
7answers
3k views

what is array decaying?

what is decaying of array? is there any relation to the array pointers?
21
votes
11answers
3k views

Pointer vs Variable speed in C++

At a job interview I was asked the question "In C++ how do you access a variable faster, though the normal variable identifier or though a pointer". I must say I did not have a good technical answer ...
21
votes
5answers
3k views

Difference between pointer to a reference and reference to a pointer

What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++? Where should one be preferred over the other?
21
votes
15answers
6k views

Uses for multiple levels of pointer dereferences?

When does using pointers in any language require someone to use more than one, let's say a triple pointer. When does it make sense to use a triple pointer instead of just using a regular pointer? For ...
21
votes
6answers
1k views

String immutability in C#

I was curious how the StringBuilder class is implemented internally, so I decided to check out Mono's source code and compare it with Reflector's disassembled code of the Microsoft's implementation. ...
21
votes
4answers
1k views

dereferencing the null pointer

int* p = 0; int* q = &*p; Is this undefined behavior or not? I browsed some related questions, but this specific aspect didn't show up.
21
votes
4answers
8k views

NULL pointer in C and C++

In C, NULL is defined as (void *)0 whereas in C++ it is 0. Why is it so? In C I can understand that if NULL is not typecast to (void *) then compilers may/may not generate warning. Other than this, is ...
21
votes
1answer
362 views

Pointer arithmetic across subobject boundaries

Does the following code (which performs pointer arithmetic across subobject boundaries) have well-defined behavior for types T for which it compiles (which, in C++11, does not not necessarily have to ...
20
votes
11answers
7k views

Typedef pointers a good idea?

I looked through some code and noticed that the convention was to turn pointer types like SomeStruct* into typedef SomeStruct* pSomeStruct; Is there any merit to this?
20
votes
4answers
21k views

Arrow operator (->) usage in C

I am currently learning C by reading a good beginner's book called "Teach Yourself C in 21 Days" (I have already learned Java and C# so I am moving at a much faster pace). I was reading the chapter on ...
20
votes
4answers
4k views

Can I call memcpy() and memmove() with “number of bytes” set to zero?

Do I need to treat cases when I actully have nothing to move/copy with memmove()/memcpy() as edge cases int numberOfBytes = ... if( numberOfBytes != 0 ) { memmove( dest, source, numberOfBytes ); ...
20
votes
4answers
578 views

About Pointers To Functions in function declarations

#include<stdio.h> #include<stdlib.h> int fun1() { printf("I am fun1."); return 0; } int fun2(int fun()) { fun(); return 0; } int main() { fun2(fun1); return 0; } ...
20
votes
5answers
3k views

What's the difference in c++ between new int and new (int)?

what's the difference between int * num = new (int); and int * num = new int; ? Is there a difference at all? EDIT thx all. ... which one is the most correct answer?
20
votes
3answers
647 views

Why can't a constant pointer be a constant expression?

The following program compiles: template <const int * P> class Test{}; extern const int var = 42; //extern needed to force external linkage int main() { Test<&var> test; } ...
19
votes
5answers
32k views

C: pointer to struct in the struct definition

How can I have a pointer to the next struct in the definition of this struct: typedef struct A { int a; int b; A* next; } A; this is how I first wrote it but it does not work.
19
votes
10answers
9k views

Is there any reason to check for a NULL pointer before deleting?

I see some legacy code checking for null before deleting the pointer. as like below if(NULL != pSomeObject)//any reason for checking for null { delete pSomeObject; pSomeObject = NULL;//any reason ...
19
votes
9answers
6k views

Is NULL always false?

Is it safe to assume that NULL always translates to false in C? void *somePtr = NULL; if (!somePtr) { /* This will always be executed? */ } Or should an explicit check against the value of NULL ...
19
votes
9answers
10k views

Pointers in C: when to use the ampersand and the asterisk?

I'm just starting out with pointers, and I'm slightly confused. I know & means the address of a variable and that * can be used in front of a pointer variable to get the value of the object that ...
19
votes
8answers
7k views

++ on a dereferenced pointer in C?

Trying to understand the behaviour of pointers in C, i was a little surprised by the following (example code below): #include <stdio.h> void add_one_v1(int *our_var_ptr) { *our_var_ptr = ...
19
votes
7answers
465 views

Difference between passing array,fixed-sized array and base address of array as a function parameter.

I am confused about which syntax to use if I want to pass an array of known or unknown size as a function parameter. Suppose I have these variants for the purpose: void func1(char* str) { ...
19
votes
4answers
6k views

A pointer to 2d array

I have a question about a pointer to 2d array. If an array is something like int a[2][3]; then, is this a pointer to array a? int (*p)[3] = a; If this is correct, I am wondering what does [3] ...
19
votes
13answers
1k views

What are void pointers for in C++?

My question is simple: What are void pointers for in C++? (Those things you declare with void* myptr;) What is their use? Can I make them point to a variable of any type?
19
votes
5answers
25k views

Dereferencing type-punned pointer will break strict-aliasing rules

I used the following piece of code to read data from files as part of a larger program. double data_read(FILE *stream,int code) { char data[8]; switch(code) { case 0x08: ...
19
votes
4answers
901 views

Why can I implicitly convert an int literal to an int * in C but not in C++?

I believed that in the following code, C "automatically casts 17 to an int *" which, as someone recently pointed out (but did not give the reasons as to why), is wrong. int *ptoi = 17; // I assumed ...
19
votes
6answers
311 views

C++ pointer to functions, Beginner Question

I want to ask about pointer in C++ I have some simple code: int add(int a, int b){ return a+b; } int runner(int x,int y, int (*functocall)(int, int)){ return (*functocall)(x,y); } now, suppose ...
18
votes
7answers
9k views

What does a const pointer-to-pointer mean in C and in C++?

I know the rule-of-thumb to read declarations right-to-left and I was fairly sure I knew what was going on until a colleague told me that: const MyStructure** ppMyStruct; means "ppMyStruct is a ...
18
votes
8answers
6k views

Does free(ptr) where ptr is NULL corrupt memory?

Theoretically I can say that free(ptr); free(ptr); is a memory corruption since we are freeing the memory which has already been freed. But what if free(ptr); ptr=NULL; free(ptr); As the OS ...
18
votes
8answers
1k views

C++ vs Java: endless loop creating objects only crashes C++

This was a question in one of my books (with no answer attached to it), that I've been thinking about for a few days now. Is the answer simply that the C++ code will eventually crash because it is ...
18
votes
4answers
860 views

Adding two numbers without using +

I have this code which does the trick: #include <stdio.h> int main() { int a = 30000, b = 20,sum; char *p; p=(char *)a; sum = (int)&p[b]; // adding a & b ...
18
votes
4answers
15k views

C++ Vector of Pointers to Objects

I'm using a vector of pointers to objects. These objects are derived from a base class, and are being dynamically allocated and stored. For example, I have something like: vector<Enemy*> ...
18
votes
7answers
5k views

Can a pointer ever point to itself?

This question was mentioned here. My question is: If a pointer variable has the same address as its value, is it really pointing to itself? For example - in the following piece of code, is a a ...
18
votes
8answers
1k views

Pointer syntax in C: why does * only apply to the first variable?

The following declaration in C: int* a, b; will declare a as type int* and b as type int. I'm well aware of this trap, but what I want to know is why it works this way. Why doesn't it also declare ...
18
votes
7answers
1k views

Is there a concept of “pointers” or “unsafe code” in Java?

Yesterday I was attending a talk by a CTO of a reputed European Comapny, and he told until recently he did not know that java has pointers . On confronting him he said he is absolutely sure about ...
18
votes
2answers
363 views

Why is unique_ptr<T>(T*) explicit?

The following functions do not compile: std::unique_ptr<int> foo() { int* answer = new int(42); return answer; } std::unique_ptr<int> bar() { return new int(42); } I find ...
18
votes
4answers
413 views

How can pointers be totally ordered?

Pointers in C++ may in general only be compared for equality. By contrast, less-than comparison is only allowed for two pointers that point to subobjects of the same complete object (e.g. array ...
18
votes
5answers
2k views

C - how can I invoke buffer overflow [hw, not hacking]?

I got a hw assignment asking me to invoke a function without explicitly calling it, using buffer overflow. The code is basically this: #include <stdio.h> #include <stdlib.h> void g() { ...
18
votes
1answer
924 views

In Delphi/Free Pascal: is ^ an operator or does it simply denote a pointer type?

In Delphi/Free Pascal: is ^ an operator or does it simply denote a pointer type? Sample code program Project1; {$APPTYPE CONSOLE} var P: ^Integer; begin New(P); P^ := 20; ...
18
votes
6answers
42k views

Print the Address a Pointer Contains in C

I want to do something that seems fairly simple. I get results but the problem is, I have no way to know if the results are correct. I'm working in C and I have two pointers; I want to print the ...
18
votes
2answers
449 views

Why is taking the address of a destructor forbidden?

C++ standard at 12.4.2 states that [...] The address of a destructor shall not be taken. [...] However, one can without any complaints by the compiler take the address of a wrapper around a ...
17
votes
15answers
9k views

Why aren't pointers initialized with NULL by default?

I guess this have been answered before, but I just couldn't find the answer here or on Google, but I think that it is because I couldn't type the right question... Can someone please explain why ...
17
votes
14answers
2k 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 ...
17
votes
7answers
3k views

Why do some people prefer “T const&” over “const T&”?

So, I realize that const T& and T const& are identical and both mean a reference to a const T. In both cases, the reference is also constant (references cannot be reassigned, unlike pointers). ...
17
votes
10answers
994 views

Why do we have pointers other than void

I know that we have different pointers like int, float, and char. A void pointer is the only pointer which can hold all others. Do the other pointers exist only for the flexibility to do pointer ...

1 2 3 4 5 234