Tagged Questions

1
vote
4answers
232 views

Storing data of unknown size in C++

Hi, I've been using PHP for about 4 years, however I've come across a problem that requires something with slightly (:P) better performance and so I've chosen C++. The program I' …
2
votes
4answers
139 views

Dynamic arrays size and dynamic arrays allocators in VC++

hello, guys I'm confused a little while writing own tiny discovering program to clear up how Visual C++ allocates the memory for dynamic arrays. I must note, I have never met tech …
0
votes
2answers
33 views

Pointer won’t return with assigned address

I'm using Qt Creator 4.5 with GCC 4.3 and I'm having the following problem that I am not sure is Qt or C++ related: I call a function with a char * as an input parameter. Inside th …
1
vote
3answers
99 views

Storing heterogeneous objects in vector with stack-allocated objects

Storing objects in heterogeneous vector with stack-allocated objects Hello, Say I have an abstract class CA, derived into CA1, CA2, and maybe others. I want to put objects of th …
0
votes
4answers
122 views

How do dynamically allocated arrays get freed in C++?

I know that you have to do it like this: int * p; p = new int[10]; //use array delete [] p; Now my question is: Since it's not explicitly stated, how is it possible that the c …
2
votes
4answers
280 views

C++ dynamically allocated array of statically dimensioned arrays

I need to create a structure that holds a variable number of 'char[2]'s, i.e. static arrays of 2 chars. My question is, how do I allocate memory for x number of char[2]. I tried …
6
votes
5answers
393 views

Can you declare a pointer on the heap?

This is the method for creating a variable on the heap in C++: T *ptr = new T; ptr refers to a pointer to the new T, obviously. My question is, can you do this: T *ptr = new T* …
4
votes
8answers
551 views

How much memory should you be able to allocate?

Background: I am writing a C++ program working with large amounts of geodata, and wish to load large chunks to process at a single go. I am constrained to working with an app comp …
0
votes
6answers
584 views

Segmentation fault when malloc/free appear in loop in C

Hi there, I have a program that basically looks like: typedef struct cpl_def { int A; int B; int OK; struct cpls …
1
vote
1answer
60 views

Object Allocations going crazy.

I have CFArray and CFString allocations going all red while checking on the Instruments Object Alloc. Object seem to be alive but not being used, this because the used part of th …
3
votes
6answers
856 views

Simple C implementation to track memory malloc/free?

programming language: C platform: ARM Compiler: ADS 1.2 I need to keep track of simple melloc/free calls in my project. I just need to get very basic idea of how much heap memory …
1
vote
1answer
91 views

How well does Valgrind handle threads and machine-level synchronization instructions?

I have a highly parallel Windows program that uses lots of threads, hand-coded machine synchronization instructions, and home-rolled parallel-safe storage allocators. Alas, the st …
1
vote
9answers
639 views

When to use Malloc instead of New [closed]

Duplicate of: In what cases do I use malloc vs new? Just re-reading this question: http://stackoverflow.com/questions/807939/what-is-the-difference-between-new-and-malloc-and-call …
0
votes
8answers
357 views

Resizing dynamic stack allocations in C++

Hi, I'm writing a small ray tracer using bounding volume hierarchies to accelerate ray tracing. Long story short, I have a binary tree and I might need to visit multiple leafs. C …