How would I copy an array say
float arraytobecopied[] = {1.20,2.50,3.60};
to another array that has data in it already say
float newarray[] = {5.20,6.30,4.20};
I want to add the the arraytobecopied
to the end of the new array and keep the values in the array. also as a side note this would be an on going process adding to the end of the array every time.
Should i just use a for
loop? or is there a better way.
(Can't use Array) already tried:(
ive tried it already and it doesnt work for me needs.
– Dakota Miller Jun 11 '13 at 04:25