Tagged Questions
1
vote
6answers
81 views
c++ pointer always on the same address even if not deleted
I am playing with C++ pointers. I allocated memory to a pointer but I didn't free it afterwards. The next time I ran the program the pointer resides on the same address - why? Shouldn't OS see that ...
0
votes
0answers
54 views
Default constructor of class with pointer inside
Let consider following code (behavior of certain lines is described in comments):
#include <iostream>
#include <string>
class Foo {
char* arr_ptr;
int arr_len;
public:
Foo() {
...
0
votes
2answers
63 views
how to release the memory for a structure, pointer for each iteration of loop
I have a structure
typedef struct {
unsigned ccc;
unsigned ddd;
unsigned aaa;
unsigned bbb;
string ddd;
} objinfo;
which has be involved in the following places in my code:
objinfo ...
0
votes
4answers
74 views
Segfault — but the pointer isn't NULL [closed]
I am doing something like the following in C:
void *initialize()
{
my_type *ret = malloc(sizeof(my_type));
return (void*)ret;
}
void test()
{
my_type* ret = (mytype*)initialize();
...
0
votes
3answers
78 views
why cant i manage ~382MB of memory when i have it available?
OBJECTIVE: manage a unsigned long tomBOLA[5][10000000];
$top gives me:
top - 14:05:35 up 4:06, 4 users, load average: 0.46, 0.48, 0.44
Tasks: 182 total, 1 running, 180 sleeping, 1 stopped, ...
3
votes
5answers
84 views
Which is better in C allocating/deallocating memory of using a local variable? and Why?
If I need to do string manipulation or manipulating any kind of arrays be it stantard types like int or a self defined data structure. What is better local variable or dynamically allocating and ...
0
votes
2answers
50 views
How is the validity of pointer comparisons within an array ensured?
The C standard guarantees the validity of a pointer comparison when both point to elements of the same array, but how does that typically get ensured in a system?
The compiler might let you choose ...
4
votes
3answers
103 views
Pointers and Memory Allocation in C
Program:
int x;
int *y;
int **z;
z = (int **) malloc (sizeof(int *));
y = (int *) malloc (sizeof(int));
x = 1;
*z = &x;
*y = x;
.
.
.
Question:
What is the difference between:
*z = &x;
...
0
votes
3answers
72 views
Segmentation fault (core dumped) in c - pointers and memory management
I'm doing a certain project for college, which consists in reading an input text, and generating a certain output, based in several commands. The focal point for grading is the efficiency, so dynamic ...
0
votes
0answers
38 views
How to initialize allocated memory [closed]
In the following code I get the usual Object reference not set to an instance of an object error. Further, when I look at the variable dibCOMP after break, dibCOMP IsNull is true, and there is an ...
4
votes
6answers
108 views
Why can I still access a member of a struct after the pointer to it is freed?
If I define a structure...
struct LinkNode
{
int node_val;
struct LinkNode *next_node;
};
and then create a pointer to it...
struct LinkNode *mynode = malloc(sizeof(struct LinkNode));
...and ...
3
votes
5answers
125 views
Pointers to strings
I am a newbie to C programming. And I am confused with the chaotic behavior of pointers. Specially when it comes to strings and arrays.
I know that I can't write like,
#include <stdio.h>
int ...
0
votes
4answers
136 views
What's the difference between an array and a pointer in C exactly?
This question may sound stupid but I'm not really sure about it. I mean, what's the difference between:
char* line = (char*) malloc(MAX_LINE_LEN);
and
char line[MAX_LINE_LEN];
exactly? I know ...
2
votes
1answer
74 views
C++ Memory Leak new operator
I need to identify which objects are destroyed AND if there is any memory leaks on this code.
void myfunc()
{
Photo a(1, 2);
Photo* pt = new Photo(2, 3);
throw runtime_error("to test ...
0
votes
2answers
53 views
Link Lists, invalid application of path to size incomplete type
Im Getting an invalid application of path to size error when compiling my code but cant find the problem myself, can anyone help?
/*********************************************************
* Node to ...
14
votes
4answers
371 views
C# ref is it like a pointer in C/C++ or a reference in C++?
I'm working with the ref and don't understand clearly "Is it like a pointer as in C/C++ or it's like a reference in C++?"
Why did I ask such a weak question as you thought for a moment?
Because, when ...
1
vote
3answers
93 views
Pointer logic causing an access violation
One of my program methods to add a contact is giving the following error when executing:
Unhandled exception at 0x00111deb in G00290342.exe: 0xC0000005: Access violation reading location 0x00000050.
...
1
vote
2answers
55 views
Pointers and multidimensional arrays
I want to have an array of k 2-element arrays of ints. My code:
int **pipe_fd_ptr;
pipe_fd_ptr = malloc(k*sizeof(int*));
for(i = 0; i < k; i++)
{
pipe_fd_ptr = malloc(2*sizeof(int));
}
// ...
1
vote
2answers
61 views
How to use an array of pointers inside a structure correctly
I have two structures parent and child as you can see in my code below. The parent structure has an array of pointers of type child. I get a segmetation error when the the program enters the for loop. ...
2
votes
3answers
144 views
Pointer-to-pointer dynamic two-dimensional array
First timer on this website, so here goes..
I'm a newbie to C++ and I'm currently working through the book "Data structures using C++ 2nd ed, of D.S. Malik".
In the book Malik offers two ways of ...
0
votes
1answer
38 views
Trouble with destructor in overloaded = STATUS_ACCESS_VIOLATION
I need to overload = to be able to make deep copy of instances of my class.
It works quite well untill I try to set as input lot of some random data. Then I get this message:
Exception: ...
1
vote
3answers
59 views
How to fill up char with string after allocation?
I have this structure:
struct student {
int id;
string name;
string surname;
};
What I need to do is to make function with this declaration:
char* surname_name (student Student)
which will ...
1
vote
1answer
60 views
C realloc segmentation fault with appending char * to char **
I'm having trouble with the following code, which appends a char * to a char** by allocating more space.
size_t appendToken(char *tokens[], char *token, size_t size, size_t cap)
{
...
3
votes
1answer
88 views
Using comparison operators with pointers to check if it is within an address range?
I'm implementing a function that deallocates a memory location that has been supplied to it, via a call to deallocate_cache(void *ptr).
My memory constructs for the task at hand are the following:
...
0
votes
4answers
101 views
Dynamic char** array in c
I am trying to execute a execv() command, the second parameter is a list of arguments to pass.
My arguments are currently held in a string format i.e
--config=moo --console --something=moo2 ...
4
votes
6answers
153 views
How to detect if pointer was deleted and securely delete it
In C++ How to decide or know if a pointer was deleted before??
when i tried to delete a pointer that was previously deleted in another part of the code it threw an exception that can't be handled.
I ...
0
votes
2answers
80 views
Memory management when working with pointers in C++
I have these scenarios and I want to know if I manage my memory correctly. I watch the memory consumption in the Task Manager when I start the executable and see how memory is not popped back to the ...
0
votes
2answers
85 views
Fortran Unhandled Exception (msvcr100d.dll)
I'm getting this unhandled exception when I exit my program:
Unhandled exception at 0x102fe274 (msvcr100d.dll) in Parameters.exe: 0xC0000005: Access violation reading location 0x00000005.
The ...
0
votes
3answers
101 views
c - Pointer of array initialized in a function contains wrong values after returning
I'm facing an issue and I'm certainly doing something wrong.
I need to call a function that returns a pointer to an array of int but when after it returns, the values inside the array are wrong and ...
1
vote
1answer
70 views
glibc detected invalid pointer [closed]
So for one of my school assignments I have to implement my own memory allocation package. I use a struct block that represents a free block of memory and create a list of those blocks showing where ...
1
vote
2answers
67 views
how to check that a value represents an address
I'm writing a function in C that takes as input an array and gives as output two arrays. The function will write to an array that is passed in as an argument. As a "fail safe" to prevent memory ...
0
votes
3answers
73 views
Chasing Pointers Approach Fails
I am trying to modify a char array ("1,204,342,544") to remove all commas in a most efficient way. I am using chasing pointers approach for this problem. I have implemented the solution in C++, but my ...
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 ...
0
votes
1answer
100 views
Why would a recursive function be called on a pointer after NULL check?
// So I call this function after deleting a node.
// It works before I delete the node, but for some reason
// after I perform a deletion and update the tree it runs into
// EXC_BAD_ACCESS on the line ...
0
votes
2answers
54 views
Is there anything wrong with assigning dynamically created objects to pointers that are private members of a class?
For exemple, say that I have a Game class:
class Game{
public:
Game();
~Game();
void CreateWindowClass(HINSTANCE);
void CreateRessources(HINSTANCE);
void ShowMainScreen();
...
1
vote
3answers
204 views
STL Containers & Memory Management - list of objects vs. list of pointers to objects
I have had a good look at some other questions on this topic and none of them (to my knowledge) address how to correctly erase items from a stl list of objects which contain dynamicically assigned ...
-6
votes
2answers
117 views
free() invalid next size (fast) -C++ Memory error
My program mycpp.c throws memory error,i think this error has been raised due to overwrite the object pointer but i couldn't trace out
root cause of the error.I felt that the line "ref3[1]= ref3[0] ...
2
votes
4answers
391 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
votes
2answers
114 views
Struct *p != address in C
I have a bug which I don't understand.
In this piece of code the value of p should be the address from programs:
static struct ProgramList{
struct Program *program;
struct ProgramList *next;
...
0
votes
3answers
117 views
How do I delete this 2D array in c++
In simple 1D array :
node *nodes = new node[MAX_NODES];
deleting by
delete [] nodes;
deletes all the nodes allocated in the array.
But in this case :
float (*buildingArray)[3] = new ...
1
vote
1answer
76 views
Opening over 4092 files sequentially in C
I'm writing a program to read in words from ~30,000 files, but I can no longer read in a new file after the 4092nd iteration. I even tried including a free(filePointer) at the end of the loop, but my ...
0
votes
5answers
63 views
Make a copy of a board
I am trying to make a board game, since every move has to be valid, so I am making a copy of board and make a move so I can verify if that move is valid or not.
First I initialize all the positions ...
0
votes
2answers
38 views
Error on freeing memory used by a function in C
I have a main that do:
unsigned char *f_hmac = calculate_hmac(output_file_path, mac_key, keyLength);
fwrite(f_hmac, 1, 64, fpout);
free(f_hmac);
and a function (which prototype is:unsigned char ...
1
vote
1answer
67 views
What are the differerences between the new Ada sub-pool features and pools of pools?
I recently read the 2012 rationale portion on iterators and pools. One of the things overviewed is the new abilities concerning subpools, one question that was unanswered is what's the difference ...
0
votes
2answers
189 views
C++ Avoiding Global Variables and Singletons
I have recently been trying to remove the use of singletons and global variables from my project but I am having a hard time doing so. I have somewhat devised a better alternative to the singletons ...
0
votes
2answers
75 views
C++: new and delete mixup
I have a small problem with using the new and delete operators. I read in a bunch of places that every 'new' operator has to correspond to a 'delete', and as I understand it, variables created with ...
0
votes
1answer
183 views
Deleting double pointer causes heap corruption
I am using a double pointer but when I try to delete it it causes Heap Corruption: CRT detected that the application wrote to memory after end of heap. It "crashes" inside the destructor of the ...
0
votes
2answers
119 views
C++: anything wrong with the following code?
I got the the following code:
T *p = new T[10];
delete p;
It should be delete [] p, I think. I tried it on T=int type, no error. Then I created a simple class, exception. Any clear explanation?
T ...
-2
votes
3answers
48 views
unknow exception is coming for the program
my program is intended for allocating a memory for an 2d array at run time and then take elements into it and then display it. my prog is throwing some exception can anyone help me identify it?
...
4
votes
4answers
249 views
Is memory address 0x0 usable?
I was wondering... what if when you do a new, the address where the reservation starts is 0x0? I guess it is not possible, but why?
is the new operator prepared for that? is that part of the first ...






