Tagged Questions
1
vote
1answer
408 views
What are the implications of performing a shallow copy on an array in order to resize it?
If my understanding of deep and shallow copying is correct my question is an impossible one.
If you have an array (a[10]) and perform a shallow copy (b[20]) wouldn't this be impossible as the data in ...