I need to resize a char array[size] to char array[new_size] at runtime.
How can I do this?
|
If you were using |
|||
|
|
|
assuming example (taken from OpenBSD's man page):
|
|||||||||||||
|
|
You have to allocate a new array and copy the contents of the existing array to it. You can't simply make the existing array larger |
|||
|
Something like this:
In response to the comments on other answers, the best way to do this actually would be to use an STL container. But anyway, if you prefer to use arrays, it's quite easy to swap the current array with a bigger one (internally the STL containers will do exactly that anyway). |
|||||||||||
|
|
Delete the old array, if any, and then allocate a new one:
|
|||||||||
|
|
ok, thanks for all the answers, I fixed my problem just by creating a new space for the new char array throwght a pointer... thanks |
|||||||||||||||||
|
char[]? – Mehrdad Afshari Aug 30 '09 at 21:08