Question: Instructions Using the C++ code below, Create a function/method that will increase the size of an array by 2 (double the size). The function/method must

Instructions

Using the C++ code below, Create a function/method that will increase the size of an array by 2 (double the size). The function/method must return a pointer to the new array. Main will create the initial array and pass it to the function/method. The pointer in main will point to the array with the new size. No data should be lost from the array passed in and all the new locations should be set to zero.

#include  using namespace std; int* ExpandArray(int data[], int size) { } int main() { int size = 2; int* values = new int[size]; values[0] = 55; values[1] = 77; for (int index = 0; index < size; index++) { cout << values[index] << endl; } values = ExpandArray(values, size); for (int index = 0; index < size * 2; index++) { cout << values[index] << endl; } delete[] values; return 0; }

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!