The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
3answers
86 views

Array memory Allocation doesn't work

I have the next classes: class A { }; class B : public A { int num; }; in my main I have: int main() { A* vec; // A is a class with pure virtual functions vec = new B[2]; // want to ...
1
vote
3answers
53 views

For “int demo[4][2]”,why are all these same in magnitude: &demo[1],demo[1],demo+1,*(demo+1) ?What about type?

Just when I had relaxed thinking I have a fair understanding of pointers in the context of arrays,I have fallen face down again over this following program.I had understood how for an array arr,arr ...
0
votes
3answers
105 views

Why does incrementing a void pointer by 1 moves one byte ahead but it's 4 bytes for an integer pointer,8 for double? [duplicate]

In the following program,if I add 1 to a void pointer, it moves one byte ahead.But,quite as expected, it moves 4 and 8 bytes respectively for int and double pointers.Why does the void pointer move by ...
0
votes
3answers
85 views

Deallocate structure using pointer arithmetics and a pointer to an element of that structure

I have the following structure in C++ : struct wrapper { // Param constructor wrapper(unsigned int _id, const char* _string1, unsigned int _year, unsigned int _value, unsigned int ...
3
votes
3answers
268 views

Portable and safe way to add byte offset to any pointer

I'm quite new at working with C++ and haven't grapsed all the intricacies and subtleties of the language. What is the most portable, correct and safe way to add an arbitrary byte ofset to a pointer ...
-1
votes
3answers
73 views

pointer arithemetic while using an array of double [closed]

So I have a pointer to an array of doubles, what I need to do is us pointer arithmetic to move to next place in the array, however I cant find any decent documentation on how to do this. This is my ...
1
vote
2answers
57 views

Really basic mpir questions

I know this is a really dumb question but I was hoping someone could help. I'm forced to use mpir for precision reasons so I have to translate all my c code for it. Basically I just need more ...
1
vote
3answers
147 views

Array Assignments in C Using Pointer Arithmetic

How can I change the value in an array when I access a particular element using pointer arithmetic? #include <stdio.h> int main() { int a[3] = {1, 1, 1}, b[3] = {2, 2, 2}; a++ = b++; // ...
22
votes
1answer
374 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 ...
-2
votes
1answer
62 views

Errors involving pointer functions in arithmetic

Here are my errors: postfix.cpp: In function ‘int main()’: postfix.cpp:32: warning: pointer to a function used in arithmetic postfix.cpp:87: warning: pointer to a function used in arithmetic ...
1
vote
4answers
296 views

Pointer address Arithmetic and Hex/Dec Conversion

I have a pointer address I obtained from the extern char etext, end and edata. I also obtained address of variables using &<Variable Name>. Both are hexadecimal pointer addresses. I need to ...
8
votes
1answer
180 views

Is the “one-past-the-end” pointer of a non-array type a valid concept in C++?

The C++ standard [sec 5.7] says: If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not ...
3
votes
4answers
86 views

Access Violation in pointer arithmetic

With the code: int nsize; int * buffer; char TargetBuffer[4096]; const SIZE_T buffersize = (320*240) * sizeof(int); buffer = (int *) malloc(bufferSize); // fill buffer with data nsize = 0; ...
4
votes
5answers
196 views

Pointer arithmetic disguised &(array[0])

Today I browsed some source code (it was an example file explaining the use of a software framework) and discovered a lot of code like this: int* array = new int[10]; // or malloc, who cares. Please, ...
0
votes
1answer
74 views

Dereferencing void* warnings on Xcode

I'm aware of this SO question and this SO question. The element of novelty in this one is in its focus on Xcode, and in its use of square brackets to dereference a pointer to void. The following ...
0
votes
4answers
90 views

pointer arithmetic in C for getting a string

I want to get the elements of an array of characters, but no success at all, the problem is that I only get the first and last element and nothing more, my code is: void getcharacters(char *cad) { ...
1
vote
2answers
117 views

C++ find all pointer arithmetic in file

There are several large C++ source files. We need to find all pointer arithmetic operations in these files. Is it possible to do this task automatically? Is it possible to disable pointer arithmetic ...
0
votes
1answer
76 views

OpenCV visual for understanding pointer arithmetic

I'm just learning OpenCV. The book I'm reading recommends that for operations where I need to touch every pixel, I use a double for loop with pointer arithmetic, stepWidth, etc to go from one to the ...
2
votes
3answers
136 views

Pointer arithmetic and portability

I'm writing an application and I had to do some pointers arithmetic. However this application will be running on different architecture! I was not really sure if this would be problematic but after ...
1
vote
1answer
223 views

How void pointer arithmetic is happening in GCC

int main() { int a; void *p; p = &a; printf("%ld\n",(long)p); p = p+1; printf("%ld\n",(long)p); } In this program, p+1 is just incrementing the value of ...
0
votes
2answers
127 views

Pointer arithmetic in for-loop

I'm trying to understand some code that uses pointer arithmetic in a way I'm not used to. At one point in the code I encounter this: complex<double> **P, *p_row, ...
3
votes
2answers
104 views

Casting and adding pointers to types of different size

Suppose I have following code snippet: int8_t *a = 1; int16_t *b = (int16_t*)(a + 1); int32_t *c = (int32_t*)b + 2; Then a = 1, b = 2, c = 10. (Here I am not sure either, because I used printf() ...
1
vote
2answers
76 views

When is type applied to pointer arithmetic logic?

If I have some array of ints, let's just say: int iarr[5] = {0, 7, 3, 12, 99}; Which is present at address 0xbfdf53a8; and I want to print out the values of this with a loop, I can do something ...
4
votes
3answers
108 views

How do I apply a structure offset?

I have a structure typedef struct foo { int lengthOfArray1; int lengthOfArray2; int* array1; int* array2; } foo; I need to allocate enough memory for the entire structure and its ...
1
vote
4answers
58 views

Where's the memory leak?

So I'm learning pointers and having a difficult time identifying the memory leak here. I confess I have never used malloc() before and am new to pointer arithmetic. Thanks in advance. /*filename: ...
1
vote
3answers
102 views

Pointer to array dilemma

I have a rather simple question about arrays and pointer to arrays. consider this code fragment.. int (*ptr)[3]; //A pointer to an array of 3 ints int arr1[3] = {2,4,6,}; ptr = ...
1
vote
1answer
115 views

visualizing what pointers indicate in printf

I've come across such a function, very useful for my task of reversing a special type of words. I have a problem with that complicated pointer arithmetic in a while loop. How to display that array ...
2
votes
4answers
103 views

How does C retrieve the address of a row for a 2d array

Can someone explain to me how C retrieves the correct memory address for a row when you only use one subscript to access a 2d array? Example - int array2D[2][2] = {1,2,3,4}; printf ( "starting ...
3
votes
3answers
215 views

When is pointer subtraction undefined in C?

char *buf = malloc(bufsize) char *ptr = buf; … while(condition) { ptrdiff_t offset = ptr - buf; // <========== THIS LINE // offset will never be negative because we only ever *increase* ...
0
votes
4answers
111 views

C memory allocation initialising and handling

Having trouble with my task here. I need to create a global block of free memory and malloc it. Having some trouble initialising it due to typecast and handling errors. Like arrays in C where the ...
0
votes
3answers
69 views

Pointer arithmetics in C++ uses sizeof(type) incremention instead of byte incremention?

I am confused by the behavior of pointer arithmetics in C++. I have an array and I want to go N elements forward from the current one. Since in C++ pointer is memory address in BYTES, it seemed ...
-1
votes
4answers
302 views

Any example of useful pointer arithmetic in Objective-C / iOS programming?

I am aware of the existence of pointer arithmetic in C, but can anyone cite any example of why pointer arithmetic is ever useful in Objective-C programming for iOS? I am stumped...
2
votes
3answers
111 views

Appending debug header in custom malloc

I'm pretty rust at my C still and I am just not figuring this out. What I am trying to do is to implement my own malloc so I can keep track of allocations and debug missing calls to free(). I have a ...
0
votes
0answers
138 views

Pointer arithmetic to access mmaped data [closed]

How does one use pointer arithmetic to access mmapped data? How does incrementing the pointer of char* relate to the data that is mapped in virtual memory? e.g. if I know that data between offset ...
1
vote
3answers
209 views

Pointer Arithmetic with Arrays

I am new to C programming and I am getting confused with the pointer math. I have an array of characters of size 32. It is my understanding that this means that the array is also 32 bytes since a ...
1
vote
1answer
197 views

Correct usage of offsetof macro

I'm trying to work with the offsetof macro in the following way: typedef unsigned char u8; typedef unsigned short u16; struct MapBlock { u16 type : 10; u8 variant : 3; bool isTop : 1; }; ...
5
votes
5answers
256 views

Pointer to pointer Arithmetic

Can someone explain the output of the following code char* a[] = {"ABC123", "DEF456", "GHI789"}; char **p = a; cout<<++*p<<std::endl; cout<<*p++<<std::endl; ...
2
votes
4answers
455 views

Pointer data types in C

If I have a pointer like: int* ptr; and I do: printf("%#x\n%#x\n%#x\n", ptr, ptr+1, ptr+2); I get the output as: some address some address + 4bytes some address + 8bytes Now if I make the ...
0
votes
4answers
2k 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 ...
4
votes
1answer
152 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 ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ...
1
vote
2answers
545 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. ...
7
votes
5answers
170 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?
4
votes
2answers
466 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 ...
7
votes
4answers
569 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 ...
2
votes
2answers
138 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 --; /* ...
9
votes
2answers
354 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]]
0
votes
1answer
76 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 ...
3
votes
2answers
104 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 ...
2
votes
4answers
2k 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 ...
0
votes
3answers
117 views

needed explanation for a c-program

In a c-book I bought, an exercise program is given as what is the output for the following code snippet? printf(3+"Welcome"+2); the answer I got is me (by executing it in TC++) But I can't ...

1 2 3