+ 1
How would you add an element to an existing dynamic array of doubles?
say I have the following array: double* dArray = new double[10]; each element is filled. how would I add a new element without altering the data already filled?
0 Respuestas
say I have the following array: double* dArray = new double[10]; each element is filled. how would I add a new element without altering the data already filled?