Question: C++, beginner programing , need help please! No global variables please! Need help please! Write a void function called transformArray that takes two parameters -

C++, beginner programing, need help please! No global variables please! Need help please!

Write a void function called transformArray that takes two parameters - a reference to a pointer to adynamically allocated array of ints, and the size of that array. The pointer is passed by reference because you want to change the value of the pointer. The function should dynamically allocate an array that is twice as long, filled with the values from the original array followed by each of those values plus one. For example, if the array that was passed in was {4, 2, 5}, then it should be replaced by {4, 2, 5, 5, 3, 6}. The address of the new array should be assigned to the pointer that was passed as a parameter. The function should prevent any memory leaks. Remember to also prevent memory leaks in the main you use for testing.

For example, it could be used like this:

 int* myArray = new int[3]; myArray[0] = 4; myArray[1] = 2; myArray[2] = 5; transformArray(myArray, 3); for (int i=0; i<6; i++) cout << myArray[i] << endl; delete []myArray;

The file must be named transformArray.cpp.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!