Dynamic Array

Can I delete an element in Dynamic Array ?
if so how to do ?
Can I delete an element in Dynamic Array ?
no

what you can do is make a second Dynamic Array copy what you want into it and then delete the first array.

or you could use vector
Last edited on
closed account (N36fSL3A)
Just use a vector, dynamic pointers are evil. (Well, not really, but they're error-prone).
Topic archived. No new replies allowed.