C++ How to create a dynamic array of integers using new Keyword ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
Don't forget to |
|||||
|
|
You might want to consider using the Standard Template Library . It's simple and easy to use, plus you don't have to worry about memory allocations. http://www.cplusplus.com/reference/stl/vector/vector/
|
|||||||||||||
|
|
|||||||||||||||||||||
|
|
It's all right here: http://www.cplusplus.com/doc/tutorial/dynamic/ |
|||||
|
|
|
|||

std::vector<int>. And a book. – GManNickG Oct 27 '10 at 4:32