Dynamic-Memory-Allocation-using-Array-Class

Array Class demonstrating the use of dynamic array, here is a brief overview of the code:-

  1. Declares an array pointer.
  2. Separate function for insert, resize and remove.
  3. When array utilization is around 70%, allocates a new array with double size, copy elements of original array into it and delete the original array. Then set pointer, pointing to original array to this new array.