I am trying to make a list of array pointers,
Is there a way that after declaring an array i can adjust the size?
For example at start i create a array called : "list[2]"
Is there a way that later on i can change "list[2]" and make it "list[3]" ?
And is there a way i can also delete a layer of the array, so lets say there is "list[3]" is there a way to make it "list[2]" ?
Or does c++ have any data types for list's?