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
There is no C functions as such. you can go for C++ container. This has Arrays, lists etc...