In my program, I need an array with an undetermined size and obviously this doesn't fly with the compiler. Any thoughts?
This is a discussion on Array problems within the C++ Programming forums, part of the General Programming Boards category; In my program, I need an array with an undetermined size and obviously this doesn't fly with the compiler. Any ...
In my program, I need an array with an undetermined size and obviously this doesn't fly with the compiler. Any thoughts?
Last edited by xmltorrent; 04-01-2006 at 02:26 PM.
1. An STL container of some sort, i.e. vector.
2. Dynamic memory allocation via new/delete.
I used to be an adventurer like you... then I took an arrow to the knee.
hmm Good call hk
btw I like the sig