Question: Write a program to ask the user for a positive integer n, allocate enough space on the heap for an array of integers that has

Write a program to ask the user for a positive integer n, allocate enough space on the heap for an array of integers that has n elements and then fill that array with random values using the function rand( ). Pass the array to a function called find_max that will return the index of the largest element of your array.

Your main program should print the index of the largest element of the array on the screen.

Remember to free up memory before terminating the program.

The function rand() is a library function that returns a value between 0 and RAND_MAX and can be called to get random values for each element of your dynamic array.

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!