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

learn more… | top users | synonyms (1)

17
votes
6answers
15k views

Checking if this is null

Does it ever make sense to check if this is null? Say I have a class with a method; inside that method, I check this == NULL, and if it is, return an error code. If this is null, then that means the ...
17
votes
6answers
755 views

In C/C++, for an array a, I just learned that (void*)&a == (void*)a. How does that work?

So, I always knew that the array "objects" that are passed around in C/C++ just contained the address of the first object in the array. How can the pointer to the array "object" and it's contained ...
17
votes
5answers
1k views

== for pointer comparison

I quote from "The C Programming Language" by Kernighan & Ritchie: Any pointer can be meaningfully compared for equality or inequality with zero. But the behavior is undefined for arithmetic or ...
17
votes
1answer
2k views

Rationale behind the container_of macro in linux/list.h

In the implementation of linux kernel lists in /include/linux/list.h, what is the rationale behind the first line (pasted below) of the container_of macro? const typeof( ((type *)0)->member ) ...
17
votes
3answers
2k views

Using pointers to remove item from singly-linked list

In a recent Slashdot Interview Linus Torvalds gave an example of how some people use pointers in a way that indicates they don't really understand how to use them correctly. Unfortunately, since I'm ...
17
votes
4answers
875 views

May I treat a 2D array as a contiguous 1D array?

Consider the following code: int a[25][80]; a[0][1234] = 56; int* p = &a[0][0]; p[1234] = 56; Does the second line invoke undefined behavior? How about the fourth line?
17
votes
3answers
370 views

Is &*p valid C, given that p is a pointer to an incomplete type?

Is the following example a valid complete translation unit in C? struct foo; struct foo *bar(struct foo *j) { return &*j; } struct foo is an incomplete type, but I cannot find an explicit ...
16
votes
9answers
1k views

Interpretation of int (*a)[3]

When working with arrays and pointers in C, one quickly discovers that they are by no means equivalent although it might seem so at a first glance. I know about the differences in L-values and ...
16
votes
9answers
3k views

What is the meaning of “wild pointer” in C?

Can anybody tell me, the meaning of wild pointer in C, how to obtain it and is this available in C++?
16
votes
7answers
51k views

c++ return array in a function

I have an array int arr[5] that is passed to a function fillarr(int arr[]): int fillarr(int arr[]) { for(...); return arr; } How can I return that array? How will I use it, say I returned ...
16
votes
5answers
5k views

When to use pointers and when not to?

I'm used to doing Java programming, where you never really have to think about pointers when programming. However, at the moment I'm writing a program in C++. When making classes that have members of ...
16
votes
5answers
773 views

Why is foo->bar->foobar considered bad style? And how to avoid without adding code?

Our C++ professor mentioned that using the result of operator-> as input into another operator-> is considered bad style. So instead of writing: return edge->terminal->outgoing_edges[0]; He ...
16
votes
3answers
662 views

Why is dereferencing a pointer called dereferencing?

Why is dereferencing called dereferencing? I'm just learning pointers properly, and I'd like to know why dereferencing is called that. It confused me as it sounds like you are removing a reference, ...
16
votes
4answers
955 views

Do these statements about pointers have the same effect?

Does this... char* myString = "hello"; ... have the same effect as this? char actualString[] = "hello"; char* myString = actualString;
16
votes
5answers
2k views

When should I use C++ pointers over Smart Pointers?

After reading this answer, it looks like it is a best practice to use smart pointers as much as possible, and to reduce the usage of "normal" pointers to minimum. Is that true? Please note that I'm ...
16
votes
2answers
657 views

Is p = array the same as p = &array[0]?

int numbers[20]; int * p; Are the two assignments below the same? p = numbers; p = &numbers[0];
16
votes
12answers
3k views

Using C++ is a Linked-List implementation without using pointers possible or not?

My question is very simple, can one using C++, implment a link-list data structure without using pointers (next nodes)? To further qualify my question, I'm mean can one create a Linked-List data ...
16
votes
5answers
432 views

Can pointers be of different sizes? [duplicate]

This answer comes with an interesting statement - "on machines where int* is smaller than a char*". (let's exclude pointers to functions) Is it possible for pointers to different types to have ...
16
votes
8answers
9k views

What's the proper use of printf to display pointers padded with 0s

In C, I'd like to use printf to display pointers, and so that they line up properly, I'd like to pad them with 0s. My guess was that the proper way to do this was: printf("%016p", ptr); This works, ...
16
votes
4answers
4k views

Faster (unsafe) BinaryReader in .NET

I came across a situation where I have a pretty big file that I need to read binary data from. Consequently, I realized that the default BinaryReader implementation in .NET is pretty slow. Upon ...
16
votes
9answers
524 views

How is a reference different from a pointer in implementation? [duplicate]

Possible Duplicate: Difference between pointer variable and reference variable in C++ I am reading about the book "Inside the C++ Object Model" by Stanley Lippman. What puzzles me is the ...
15
votes
13answers
798 views

At What point should you understand References?

I asked a question like this in an interview for a entry level programmer: var instance1 = new MyObject{Value = "hello"} var instance2 = instance1; instance1.Value = "bye"; ...
15
votes
14answers
2k views

C++: How to know if a pointer points to the heap or the stack?

Example: bool isHeapPtr(void* ptr) { //... } int iStack = 35; int *ptrStack = &iStack; bool isHeapPointer1 = isHeapPtr(ptrStack); // Should be false bool isHeapPointer2 = isHeapPtr(new ...
15
votes
9answers
5k views

what is `int *userMask[3][4]` pointing to?

I am modifying some code and came across a declaration that I am having trouble understanding: int *userMask[3][4] = {0}; What exactly is this pointing to? Is it a matrix where every element is a ...
15
votes
6answers
3k views

C++ strings: [] vs. *

Been thinking, what's the difference between declaring a variable with [] or * ? The way I see it: char *str = new char[100]; char str2[] = "Hi world!"; .. should be the main difference, though Im ...
15
votes
12answers
2k views

Needless pointer-casts in C

I got a comment to my answer on this thread: http://stackoverflow.com/questions/105477 In short I had code like this: int * somefunc (void) { int * temp = (int*) malloc (sizeof (int)); temp[0] ...
15
votes
6answers
1k views

In C, are arrays pointers or used as pointers?

My understanding was that arrays were simply constant pointers to a sequence of values, and when you declared an array in C, you were declaring a pointer and allocating space for the sequence it ...
15
votes
3answers
5k views

Create new C++ object at specific memory address?

Is it possible in C++ to create a new object at a specific memory location? I have a block of shared memory in which I would like to create an object. Is this possible?
15
votes
7answers
14k views

C++ deleting a pointer to a pointer

So I have a pointer to an array of pointers. If I delete it like this: delete [] PointerToPointers; Will that delete all the pointed to pointers as well? If not, do I have to loop over all of the ...
15
votes
7answers
13k views

Pointer Arithmetic

Does anyone have any good articles or explanations (blogs, examples) for pointer arithmetic? Figure the audience is a bunch of Java programmers learning C and C++.
15
votes
4answers
412 views

Is %p specifier only for valid pointers?

Suppose on my platform sizeof(int)==sizeof(void*) and I have this code: printf( "%p", rand() ); Will this be undefined behavior because of passing a value that is not a valid pointer in place of ...
15
votes
8answers
15k views

dynamic array IN struct, C

I have looked around but have been unable to find a solution to what must be a well asked question. Here is the code I have: #include <stdlib.h> struct my_struct { int n; char s[] }; ...
15
votes
2answers
1k views

Asssembly - base pointer and stack pointer

Given this piece of code: swap: push ebp ; back up the base pointer, mov ebp, esp ; push the context of the registers on the stack push eax ...
15
votes
1answer
1k views

Assigned vs <> nil

Is there any difference between If Assigned(Foo) and If (Foo <> nil)? If So, when should they each be used?
15
votes
4answers
476 views

Equivalence of p[0] and *p for incomplete array types

Consider the following code (it came about as a result of this discussion): #include <stdio.h> void foo(int (*p)[]) { // Argument has incomplete array type printf("%d\n", ...
15
votes
3answers
2k views

Declaring array of int

Is there any difference between these two declarations? int x[10]; vs. int* x = new int[10]; I suppose the former declaration (like the latter one) is a pointer declaration and both variables ...
15
votes
1answer
8k views

Pointers and arrays in Python ctypes

I have a DLL containing a C function with a prototype like this: int c_read_block(uint32 addr, uint32 *buf, uint32 num); I want to call it from Python using ctypes. The function expects a pointer to ...
14
votes
12answers
7k views

Pointer declarations in C++: placement of the asterisk

I've recently decided that I just have to finally learn C/C++, and there is one thing I do not really understand about pointers or more precisely, their definition. How about these examples: int* ...
14
votes
11answers
3k views

Can a pointer (address) ever be negative?

I have a function that I would like to be able to return special values for failure and uninitialized (it returns a pointer on success). Currently it returns NULL for failure, and -1 for ...
14
votes
6answers
32k views

Are there pointers in php?

What does this code mean? Is this how you declare a pointer in php? $this->entryId = $entryId;
14
votes
6answers
5k views

How expensive is it to dereference a pointer in C++?

how expensive is it to perform the dereference operation on a pointer in C++? I can imagine that the memory transfer is somehow proportional to the object size, but I want to know how expensive the ...
14
votes
10answers
873 views

How does a variable in C/C++ work?

How does a variable in C/C++ work? I mean, a pointer stores an address from a variable and then you have to dereference it to access the object to which it refers, so I think that a variable is a ...
14
votes
9answers
3k views

0xDEADBEEF vs. NULL

Throughout various code, I have seen people either zero out memory(memset(ptr,NULL,size) or 0xDEADBEEF(memset(ptr,0xDEADBEEF,size) memory at allocation in debug builds.So.. What is the advantages ...
14
votes
10answers
3k views

What is the difference between passing by reference in Java and passing a pointer in C?

I have been studying Java for a few months and am now starting to learn C. I am a little confused, I was under the impression that passing an object by reference and passing a pointer to that object ...
14
votes
5answers
4k views

Why does int pointer '++' increment by 4 rather than 1?

Value of a pointer is address of a variable. Why value of an int pointer increased by 4-bytes after the int pointer increased by 1. In my opinion, I think value of pointer(address of variable) only ...
14
votes
9answers
1k views

how 'free' works when pointer is incremented

When malloc is called, the size is stored adjacent to the allocated block so that free will know how much to free etc ( http://c-faq.com/malloc/freesize.html ). My question is, Say we have ...
14
votes
3answers
5k views

how to use iterator in c++?

I'm trying to calculate distance between 2 points. The 2 points I stored in a vector in c++: (0,0) and (1,1). I'm supposed to get results as 0 1.4 1.4 0 but the actual result that I got is 0 1 -1 ...
14
votes
8answers
2k views

Are all data pointers of the same size in one platform?

Are char*, int*, long* or even long long* of same size (on a given platform)?
14
votes
4answers
21k views

C++: Vector of objects vs. vector of pointers to new objects?

I am seeking to improve my C++ skills by writing a sample software renderer. It takes objects consisting of points in a 3d space and maps them to a 2d viewport and draws circles of varying size for ...
14
votes
4answers
3k views

Is it good practice to free a NULL pointer in C? [duplicate]

Possible Duplicate: Does free(ptr) where ptr is NULL corrupt memory? I'm writing a C function that frees a pointer if it was malloc()ed. The pointer can either be NULL (in the case that an ...

1 2 3 4 5 235