0
C++ increase the dimension of an array
Hi guys, I need a function that can increase the number of column or row of a multidimensional array. Can you help me!?
3 Answers
0
Look up STL Vector, regular arrays can't be resized once declared.
0
Sorry, what is STL vector !? Can I solve it with Dynamic allocation ?
0
vector is a dynamic array:-
try here.
http://www.cplusplus.com/reference/vector/