Question: C++ Programming Array Meets Pointers (20 Points) The goal of this problem is to perform operations on an array, without using the subscript operator, but
C++ Programming


Array Meets Pointers (20 Points) The goal of this problem is to perform operations on an array, without using the "subscript operator", but only with pointers. 3. Step 1: Inside the main function, ask user to input a positive integer N less than or equal to 30. Input validation is necessary here. Create an array randomnums of N integer elements using new operator, and initialize it with unique random integers. Print the array. Step 2: Write a function int* arrayManipulator(int arrayPoiner, const int size). This function receives a pointer to the array created in Step 1 Inside arrayManipulator create a new array reversedarray and dynamically allocate memory for this array using new operator with length as size. Initialize reversedarray with the elements pointed by arrayPoiner. Now, reverse the elements of reversedarray strictly using pointers, you cannot use subscript Write a function int* arrayManipulator(int'arrayPoiner, const int size). This function receives a operator. Return the pointer to reversedarray Step 3: Inside the main function, receive the pointer returned in step 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
