0
votes
3answers
50 views

Removing item at pointer location from memory c++?

I've had to create a linked list type structure that takes advantage of STL. In there is a method that has to delete objects from this linked list structure. I currently have the method re-linking the ...
1
vote
3answers
62 views

Are pointers used when copying a class with huge array member?

I have a class storing an multidimensional array as member. struct Structure { Structure() { memset(Data, 0, sizeof Data); } int Number; int Data[32][32][32]; } When I ...
-1
votes
1answer
53 views

c++ multiple times memory allocation to the same pointer [closed]

I'm dealing with a piece of code, where I'm not 100% sure about its correctness. Please can you tell me that what do you think about it? (I'm coding in Qt) Only a sample: CustomWidget *widget; ...
8
votes
2answers
212 views

Variable declaration and their memory addresses in C

I created a simple program: #include <stdio.h> int main() { int s1; int s2; int s3; int *p1, *p2, *p3; p1 = &s1; p2 = &s2; p3 = &s3; ...
-3
votes
1answer
66 views

How to create a dynamically allocated C++ Object and its pointer?

This might be a newbie question, but I am asking myself it anyway. If I have a Object class defined: Object *p = new Object(); Does this code create a pointer p, and at location p, place a Object ...
3
votes
4answers
100 views

Swap items of void* pointer array without memcpy in C

I am writing some school project, and I need to swap two items of void* pointer array. I can do this with something like following code: void swap(void *base, int len, int width) { void *p = ...
-2
votes
1answer
47 views

any idea to convert this read integer value to ascii and also is this the right way to divide the memory into blocks

#include <stdio.h> #include <stdlib.h> #define actualTV 250 #define stopparity ON #define baudrate 11250 #define startparity OFF #define msize 4096 int a[msize]; void read() { int i; ...
1
vote
2answers
38 views

advice with pointers in matlab

I am running a very large meta-simulation where I go through two hyperparameters (lets say x and y) and for each set of hyperparameters (x_i & y_j) I run a modest sized subsimulation. Thus: for ...
0
votes
1answer
27 views

Void pointer void type cast function call?

Ok this is odd. It's the first time I've seen such a line of code. Basically this calls the entry point into an application once you've specified an offset (address) from a program's PE header. As ...
1
vote
1answer
41 views

Should I unset my PHP array values?

Does garbage collection on array values work like the garbage collection on normal variables? I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
1
vote
2answers
98 views

C++ Segmentation Fault - Core Dumped [closed]

I've been having this issue for a while now and I've searched about this type of error and I believe it has to do with a memory leak or a pointer that is pointing to nothing. I've checked my code ...
0
votes
4answers
49 views

How to safely free memory using a pointer which has been adjusted

I am adjusting a pointer for an array to avoid copying all the contents of the array backwards. The problem is I want to free the data at some point, which will generate a segmentation fault unless I ...
0
votes
1answer
64 views

Pass a table init with pointers to CUDA devicememory

Inside this short example, I'm trying to pass a table with a struct init with pointers in the cuda device memory. Copy to host -> device, device -> host seems works but in the `_global_function ...
0
votes
2answers
68 views

Allocating memory for a 2d array of pointers wrapped within an struct in C

Let's say I have a struct named 'Foo' and inside of that I have a 2d array of pointers typedef struct Foo { Stuff* (*stuff)[16]; } Foo; I have an initializeFoo function like ...
1
vote
2answers
71 views

Pointers in class / freeing memory

That's probably pointers 101 ... but it's strangely hard (for me) to find an answer. In the following example, will everything be automatically deleted properly or do I have to delete some manually ? ...
0
votes
2answers
74 views

Why can I assign a longer string to a pointer in C?

#include <stdio.h> #include <stdlib.h> int main() { char *ptr = malloc(sizeof(char) * 1); ptr = "Hello World"; puts(ptr); getchar(); } im not a malloc() expert but ...
0
votes
2answers
79 views

Static Variables - C

I am writing a program that shares a globaly declared pointer to a buffer that could be used by all the functions within the program. But the buffer is not necessary in certain cases so the pointer is ...
0
votes
2answers
75 views

Pass by reference with strings

So I'm writing a string fragment reassembly program and am having trouble with the following. If one string is contained in the other, I need to have the first String be set to the larger of the two ...
2
votes
2answers
78 views

Is it possible to keep a pointer to a local variable beyond that variable's scope?

Suppose that I use this code: int *pointer; if(1) { int num = 5; // local variable, can't be used outside the if block. pointer = &num } Is this a safe way to keep track of the num ...
0
votes
2answers
50 views

Does this code cause memory leaks [duplicate]

int main() { char* str; str = "string one"; str = "string two"; str = func(); str = "string four"; return 0; } char* func() { char* tmp; tmp = "string three"; ...
0
votes
4answers
76 views

c++ memory issue about pointer + non pointer

Let's say I have declared a variable vector<int>* interList = new vector<int>(); interList->push_back(1); interList->push_back(2); interList->push_back(3); ...
2
votes
4answers
89 views

C - Pointers and Memory

I am a little confused, say in this example code; ptrMem = createSharedMemory(); ptrTemp = ptrMem; ptrMem points to a shared memory location created by SHMGET What is the point in having a ...
-1
votes
1answer
80 views

Print the content of a memory address typed by user in C++

How can I print the address typed by the user? This way don't work. This is the code. Thanks. #include <iostream> using namespace std; int main() { int num = 123456; int *addr = ...
-1
votes
3answers
70 views

Strange behaviour with a vector of pointers

I'm having a bit of trouble understanding the output that I get when I run this simple piece of code #include <vector> #include <iostream> #include "LxUNIXsys.h" using namespace std; int ...
-8
votes
1answer
94 views

Iterating through a double pointer using pointer notation in C [duplicate]

If I have a pointer to a pointer like the variable 'bs' in this sample: #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { char **bs = {"this", "is", "a", ...
0
votes
1answer
87 views

Invalid Pointer When Free'd [closed]

I'm having trouble when it's coming to freeing a char *. Freeing the overall char * is no problem, but when I try and free each char * I get an error of an invalid pointer being freed. Code: ...
2
votes
2answers
95 views

I'm new to C, and this segmentation fault stuff is killing me [closed]

I am new to c, and I am hitting the web hard, soaking up resources to help learn. I am starting off with a simple command prompt type deal, and even this is giving me difficulties! I am trying my ...
0
votes
1answer
89 views

Deallocating memory from a vector of vectors of pointers

I'm creating a particle physics simulator and I need to make proper memory management. I've found convenient that my method propagates several particles at once so this method returns a vector of ...
0
votes
2answers
105 views

C malloc function's size parameter

I am reading in a book that the malloc function in C takes the number of 'chunks' of memory you wish to allocate as a parameter and determines how many bytes the chunks are based on what you cast the ...
0
votes
1answer
50 views

Pointers and dictionary : copied or stored?

It seems that the object stored in a dictionary is a copy of the original object ! So strange !! In the following code, myData = [NSMutableDictionary dictionaryWithObjects:[NSArray ...
1
vote
2answers
101 views

Pointer to a Pointer of structs C

Hi all I might have a hard time explaining this, but I will try my best. I am creating a DLL that will be injected into a program. In order to access the data I want from inside the DLL I mapped the ...
1
vote
3answers
69 views

How does dynamically allocating a struct in C work?

I recently had an assignment where I had to dynamically allocate memory for a struct. I used this method: myStruct *struct1 = malloc(sizeof *struct1); This worked just fine. However, I don't ...
2
votes
6answers
100 views

Which bit is the address of an integer?

It's pretty simple. Let's say I have: char x = -1; Then in memory, I have (most likely?) 11111111 (01234567) So my question is, if I write &x is the address I get back the address of bit 0 ...
0
votes
2answers
41 views

Passed parameter changes value

Here's the code: #include <stdio.h> #include <stdlib.h> void foo(int* ptr) { printf("ptr is %x\n", ptr); } void main() { int* ptr = (int*)malloc(sizeof(int)); printf("ptr is ...
2
votes
3answers
63 views

Data member/code pointer offsets

Could someone please help me understand the following quote as I am not getting it: The code for accessing a data member is more compact if the offset of the member relative to the beginning of ...
2
votes
1answer
169 views

Cast void pointer to uint64_t array in C

I'm currently working with a Linux kernel module and I need to access some 64-bit values stored in an array, however I first need to cast from a void pointer. I'm using the kernel function ...
0
votes
3answers
89 views

Do the following 5 lines of code cause a memory leak?

Does this cause a memory leak because pWinsock didn't get deleted inside the fonction? Winsock* CreateWinsock() { Winsock* pWinsock=new Winsock; return pWinsock; } Edit: Actually, I cannot ...
0
votes
1answer
44 views

Is it possible to have a pointer to a pointer point to the variable pointed by the first pointer?

Would this work: Class MyClass{ public: void Foo(); private: MyClass** ppMyClass; }; MyClass* pMyClass = new MyClass; ppMyClass = &pMyClass; delete pMyClass; ppMyClass-> Foo(); ...
0
votes
1answer
134 views

First element in two dimensional array being overwritten - C

I've been having the same issue for a while now and I can't seem to get my head around it no matter how much research. I have came up with some theories why it may be happening though. Basically, I'm ...
1
vote
2answers
70 views

In C, how to read the memory chunk preceding an address

Given a struct object or a pointer to one, how can I read, say x bytes of memory, preceding the object? For example, if I know the object start at address 10, how can I read x bytes from address 10-x ...
3
votes
2answers
150 views

C++, allocating space in a for loop, possible memory leak verification

I was just curious as to if this code would create multiple memory leaks, or if it would get cleaned up correctly. Node *newNode; for (int i = 0; i < 10; i++) { newNode = new Node(); } ...
2
votes
4answers
395 views

C: pointer to array of pointers to structures (allocation/deallocation issues)

I've been getting back into C for something, but I'm having trouble remembering much of how this memory management works. I'd like to have a pointer to an array of pointers to structures. Say I have: ...
1
vote
1answer
95 views

C array of pointers, casting and / or memory

I don't understand why these pointer values seem to be correct, but the values I am trying to get out of them are not. (I studied C a long time ago, and I am recently trying to get back into it for ...
3
votes
1answer
125 views

How to backtrack a pointer?

Let say I have 2 pointers pointing to the same memory location. If I know what the address it is, how can I find out what pointers are pointing to that location? int x=5; int* p1=&x; int* ...
2
votes
0answers
78 views

Invalid pointer when using global variables/lambda functions in python?

I've come across a bit of a strange bug, and I'm really not sure what's causing it. I have a list containing lambda functions, and i have set this list to be a global variable as shown below. The ...
0
votes
1answer
82 views

C++ pointer is initialized to null by the compiler

So I've been stuck on a memory problem for days now. I have a multi-threaded program running with c++. I initialize a double* pointer. From what I've read and previous programming experience, a ...
1
vote
4answers
67 views

Heap corruption when making two bytes into a short. C++

I am developing a program in C++ and encounter this error when I run this code: short readshort() { short val=0; (&val)[1]=data.front(); data.pop_front(); (&val)[0]=data.front(); ...
0
votes
1answer
61 views

Passing a pointer that points to device __constant__ memory to kernels, instead of using directly

I'm using CUDA 5.0 and a GTX 670 on ubuntu 12.10 with gcc 4.6, and I have written a class called Grid: https://github.com/benadler/octocopter/blob/master/basestation/grid.cu ...
0
votes
4answers
119 views

storing and retrieving a pointer in an array in c++

I have a large char array which is functioning as a memory pool and want to store a pointer in the first position of the array which points to whatever the next open position in the pool is, so every ...
0
votes
2answers
114 views

Better ways to reference multi-level pointers?

As for now I'm trying to make a basic "fly mode" for a game where such one does not exist. For that I need to manipulate the game memory, and that means that pointers will have to be used to access ...

1 2 3 4 5 8