I have been facing this problem for a while now and it is really starting to frustrate me.
I have an array A which is constantly being updated. Lets say A = [1,2,3,4,5]. I need to make an exact duplicate copy of A and call it B. If A were to change to [6,7,8,9,10], B should still be [1,2,3,4,5]. What is the best way to do this? I tried a for loop like:
for(int i=0; i<5; i++){
B[i]=A[i]
}
but that doesn't seem to be working correctly? Please help? And please don't use advanced terms like deep copy etc because I do not know what that means.
Thanks
AandB? – Hristo Apr 26 '11 at 4:01