I\'m trying to increase the size of an array dynamically. Is there any standard C or C++ function, which appends additional space at the end of an array or removes it? I kno
probably you can achieve this by writing your own memory management wrapper such a way to append/release memory chunks from allocated array.