Question: please solve quickly use c++ Problem 2 (30 pts) Write a program that has the following: 1. Create a function into GenerateRandom Array(int n) that
Problem 2 (30 pts) Write a program that has the following: 1. Create a function into GenerateRandom Array(int n) that takes an integer N and returns a pointer to an array of size N initialized with random values between 1 and N. For example, if N equals to 10, calling the function from the main would result in returning a pointer to the array with random numbers between 1 and 10. 2. Create a function int" Reverse Array(int A, int N) or int ReverseArray(int A[], int N) returns a pointer of the reversed array of A. For example, if the array contains elements 1,2,3,4 and 5, the reserved array will contain 5,4,3,2, and 1. 3. Create a function void Display Array(int* A, int N) or void DisplayArray(int Al, int N) that displays the elements of the given array. 4. From your main function do the following: Creates dynamic 1D array. You can create one or more array. Call Generate Random Array() function Call DisplayArray() function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
