Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

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 ...
17
votes
10answers
3k views

C: Pointers and Arrays Question

I keep reading that, in C, using pointer arithmetic is generally faster than subscripting for array access. Is this true even with modern (supposedly-optimizing) compilers? If so, is this still the ...
10
votes
2answers
4k views

Pointer Arithmetic In C

Consider the following code fragment: int (*p)[3]; int (*q)[3]; q = p; q++; printf("%d, %d\n", q, p); printf("%d\n", q-p); I know that pointer arithmetic is intelligent, meaning that the operation ...
8
votes
3answers
781 views

C - element beyond the end of an array

I've been reading K & R's book on C, and found that pointer arithmetic in C allows access to one element beyond the end of an array. I know C allows to do almost anything with memory but I just ...
7
votes
5answers
124 views

Is arithmetic on pointers associative?

If I say, int a[] = {1, 2, 3, 4, 5}; int *p = a; Now, If I write p + 1 + 2 will it be same as ((p + 1) + 2)? Any standard reference which proves this wrong?
7
votes
2answers
117 views

C weird array syntax in multi-dimensional arrays

I've known that this is true: x[4] == 4[x] What is the equivalent for multi-dimensional arrays? Is the following true? x[4][3] == 3[x[4]] == 3[4[x]]
7
votes
5answers
123 views

Why does i[arr] work as well as arr[i] in C with larger data types?

It's fairly common knowledge that if you access an element of an array as arr[i] in C that you can also access the element as i[arr], because these just boil down to *(arr + i) and addition is ...
7
votes
7answers
383 views

Copying a string in C

I am confused about this code: (http://www.joelonsoftware.com/articles/CollegeAdvice.html) while (*s++ = *t++); What is the order of execution? Is *s = *t first done, and then are they each ...
7
votes
6answers
1k views

C pointer arithmetic

Given this code: int *p, *q; p = (int *) 1000; q = (int *) 2000; What is q - p and how?
7
votes
7answers
5k 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++.
5
votes
1answer
351 views

C - how to convert a pointer in an array to an index?

In the many search functions of C (bsearch comes to mind) if a result is found, a pointer to the spot in the array is returned. How can I convert this pointer to the index in the array that was ...
5
votes
2answers
347 views

Why subtract null pointer in offsetof()?

Linux's stddef.h defines offsetof() as: #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) whereas the Wikipedia article on offsetof() (http://en.wikipedia.org/wiki/Offsetof) ...
5
votes
6answers
342 views

Pointer arithmetic and arrays: what's really legal?

Consider the following statements: int *pFarr, *pVarr; int farr[3] = {11,22,33}; int varr[3] = {7,8,9}; pFarr = &(farr[0]); pVarr = varr; At this stage, both pointers are pointing at ...
5
votes
2answers
330 views

How does a hardware trap in a three-past-the-end pointer happen even if the pointer is never dereferenced?

In his November 1, 2005 C++ column, Herb Sutter writes ... int A[17]; int* endA = A + 17; for( int* ptr = A; ptr < endA; ptr += 5 ) { // ... } [O]n some CPU architectures, including ...
4
votes
1answer
71 views

Printing a string in C with pointer arithmetic including arrays, integers and pointers

There are three structures; arrays a and b and pointer c: c --------------------------. | V ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ...
4
votes
2answers
112 views

Dereferencing multi-dimensional array name and pointer arithmetic

I have this multi-dimensional array: char marr[][3] = {{"abc"},{"def"}}; Now if we encounter the expression *marr by definition (ISO/IEC 9899:1999) it says (and I quote) If the operand has ...
4
votes
4answers
197 views

What is the result of NULL + int?

I have seen the following macro being used in OpenGL VBO implementations: #define BUFFER_OFFSET(i) ((char *)NULL + (i)) //... glNormalPointer(GL_FLOAT, 32, BUFFER_OFFSET(x)); Could you provide a ...
4
votes
5answers
109 views

Freeing pointer after pointer arithmetic

My question is very simple one. Say we have: char* ptr = (char*) malloc(sizeof(char)*SIZE); ptr+= SIZE/2; free(ptr); What happens when we free the pointer? Is it undefined operation? Does it free ...
4
votes
1answer
348 views

uintptr_t portable alternative

I want to perform check for memory alignment of some type T. The straightforward way to do this is if (((uintptr_t)&var & __alignof(T) - 1) == 0) ... however, uintptr_t is not part of ...
3
votes
2answers
52 views

Pointer Arithmetic on pointers to pointers and the like

Is to well defined to use pointer arithmetic on pointers to pointers? eg int a=some_value; int* p=&a; int**p2=&p; Now would it be well defined behavior to perform arithmetic on p2?(eg ...
3
votes
1answer
72 views

Pointer-Array Interaction w/ null terminator

I was just experimenting with the use of pointers when dealing with arrays and I've become a bit confused with how C++ is handling the arrays. Here are the relevant bits of code I wrote: //declare a ...
3
votes
5answers
313 views

Constant pointer array or pointer to an array ? What is faster in C?

Hello I'm in an intermediary C class right now and this thought just came to my mind: int multi[3][4]; // const multidimensional array int* ptr = *multi; // ptr is a pointer variable that hold the ...
3
votes
3answers
463 views

Pointer Arithmetic & Signed / Unsigned Conversions!

Incase of pointer arithmetic, are the integers automatically converted to their signed variants? If yes, why? Suppose I do int *pointer; int *pointerdiff; unsigned int uiVal = -1; pointerdiff = ...
3
votes
9answers
2k views

What are convincing examples where pointer arithmetic is preferable to array subscripting?

I'm preparing some slides for an introductory C class, and I'm trying to present good examples (and motivation) for using pointer arithmetic over array subscripting. A lot of the examples I see in ...
2
votes
2answers
102 views

C pointer addition and substraction in sect. 6.5.6

I am trying to understand paragraph 8 and 9 of C99 sect 6.5.6 (Additive operators) Does para 8 mean: int a [4]; int *p = a; p --; /* undefined behaviour */ p = a + 4; /* okay */ p --; /* ...
2
votes
4answers
168 views

printf behavior

Take int ptr={10,20,30,40,50} I understand that print("%d", *ptr++); in such a statement evaluation of operators is from right to left. Hence in *ptr++ the ++ will get evaluated first and then ...
2
votes
4answers
218 views

C Beginner question: Pointer arithmetic > cleaning up once you are done

I'm slowly getting the hang of pointers. But there are still some questions I have. Is it possible to cause memory leaks when using pointer arithmetic because you are shifting the actual position of ...
2
votes
2answers
274 views

How to resolve pointer alias issues?

Careless use of templates can cause bloat. One way to avoid that bloat is to have a thin typesafe template that wraps non-typesafe non-template code. To do this, the wrapper needs to provide some way ...
2
votes
3answers
284 views

What is `*((char*)ptr+4))` doing? [closed]

#include<stdio.h> main() { int a[]={0,2,4,6,8}; int *ptr; ptr=a; printf("%d", *((char*)ptr+4)); } *((char*)ptr+4)) What is the purpose of this?
2
votes
2answers
1k views

System Arithmetic Exception: Delphi calling C# DLL via C++/CLI wrapper

I have a C# DLL that uses the XslCompiledTransform class for xml manipulations. I stole a C++/CLI wrapper for the C# DLL. When using Delphi 5 to implement the C++/CLI wrapper, I receive a System ...
2
votes
3answers
573 views

Increase a struct pointer with half the struct size

I just got an interesting problem to take care of, and I see no neat way to solve it. I have two base data structures that represents a complex graph, declared something like this: typedef struct ...
2
votes
5answers
562 views

What C compilers have pointer subtraction underflows?

So, as I learned from Michael Burr's comments to this answer, the C standard doesn't support integer subtraction from pointers past the first element in an array (which I suppose includes any ...
1
vote
4answers
131 views

Pointer arithmetic for structs

Given a struct definition that contains one double and three int variables (4 variables in all), if p is a pointer to this struct with a value 0x1000, what value does p++ have? This is not a homework ...
1
vote
5answers
154 views

C++ pointer arithmetic weirdness

I found my bug (after a few hours) and isolated it in the following program. The problem is with the way in which the pst2 variable's value is calculated when using pointers to a struct. When using ...
1
vote
3answers
224 views

2D pointer arithmetic in C

I am attempting to swap 2 elements in a 2D array in C, with no luck. Thanks for the answers so far, but I have edited this code to make things clearer about what I am doing. typedef struct smystruct ...
1
vote
5answers
139 views

C pointer arithmetic

What i am trying to accomplish here is taking an cString and replacing a certain character with another which place i find via using the strchr() function. what i can't figure out is how you can ...
1
vote
5answers
160 views

Pointer Arithmetic? What is the difference between these three expressions?

So I am trying to understand two things: What are the differences between these three expressions? What is the equivalent to the first expression (A)? Here is the code (fixed): #include ...
1
vote
3answers
188 views

Pointer Compiler Problems

I haven't used pointers in over 3 years and I am very rusty on this topic. I have receive a ton of errors when I compile the following code. The errors are as follows: ...
1
vote
1answer
64 views

Clarfication on pointer arithmetic

*(*(p+a)+b) If a*size is added to an address (p), then why is b*size added to *(p+a)? *(p+a) appears to be the value at that location and adding b*size to it would change its value, not the address. ...
1
vote
4answers
176 views

Problem with strchr

I can't get why the following bit of C code doesn't work: int obtainStringLength(char* str, char c1, char c2) { char* firstOcurrence = strchr(str, c1); char* endOcurrence = strchr(str, c2); ...
1
vote
6answers
199 views

void * assignment problem

I want to take some fields from packet struct using pointer arithmetic.But what is wrong with the code below ? In first condition i think if i go 4 byte(2 short field) from beginning of packet i get ...
1
vote
3answers
313 views

Order of operations for dereference and bracket-ref in C

If I do *ptr[x], is that equivalent to *(ptr[x]), or (*ptr)[x]?
1
vote
3answers
1k views

what is difference between pchar and pbyte

title explains all and why i cant perform this operation var data:pbyte; x:int64; o:pointer; begin o:=data+x; end; thanks in advance regards
1
vote
2answers
161 views

Substracting pointers: Where does this missing level of indirection come from?

I'm having trouble understanding the behavior of the MS VC compiler on this one. This line compiles fine, but the result I get is not what I'd expect at all: this->Test((char *)&CS2 - (char ...
1
vote
7answers
509 views

Cleaner pointer arithmetic syntax for manipulation with byte offsets

In the following lines of code, I need to adjust the pointer pm by an offset in bytes in one of its fields. Is there an better/easier way to do this, than incessantly casting back and forth from char ...
1
vote
6answers
893 views

Doing pointer math in a c++ class: Is it “legit”?

Ah-hoi, hoi, I'm wondering if it's ok to do something like the following: class SomeClass { int bar; }; SomeClass* foo = new SomeClass(); int offset = &(foo->bar) - foo; SomeClass* ...
1
vote
3answers
836 views

Pointer math in C#

I am trying to use some pinvoke code to call a C function. The function fills a buffer with data. The structure is set up as a DWORD for the length, followed by a string. How do I extract the ...
0
votes
4answers
89 views

Using void pointer to an array

I was just trying to use a void pointer to an integer array ,I tried to see if i can print the array back by casting it back into int. But it is giving me some random value. Can you tell me where i am ...
0
votes
2answers
76 views

Pointer Arithmetic with structures

How to print a particular member of a structure using pointer arithmetic? I have a structure with 2 members. I want to print out member j by manipulating the memory of the pointer to that structure. ...
0
votes
1answer
31 views

set int of a struct from a memory buffer

I have more of a cosmetic question: I have a memory stream (void *) which i use in the sample as "cur_ptr". Now i want to read the first bytes into a int ("version") of a struct ("a_struct"). My code ...

1 2