C++ arrays | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

C++ arrays

I currently don't have any compiler around so im wondering if arrays can be assigned this way: char *array1 = new char[128]; char *array2 = new char[128]; char *temp; temp = array1; array1 = array2; array2 = temp; temp = 0; delete[] array1; delete[] array2; In the above it is intended to swap the addresses of array1 and array2 but can it be done this way?

1st Feb 2017, 6:38 AM
R- Ry
R- Ry - avatar
1 Answer
+ 1
You can try running this program yourself on SoloLearn.
16th Mar 2017, 6:38 AM
Igor B
Igor B - avatar