Question
Write a program that performs the following operations on a one dimensional array with 50 unsigned integers. The main program will initialize the array, print
Write a program that performs the following operations on a one dimensional array with 50 unsigned integers. The main program will initialize the array, print the array values to the screen and then call a function that will determine and print the maximum and minimum values.
Declare the array and any other variables.
Use a loop to initialize the array with 50 random integer values between 0 and 99 using the rand() function. (number = rand() % 100;) Using cout print the initialized array to the screen. All 50 numbers. Can you set it up so that it prints five lines with 10 numbers each?
The main program then calls a function that determines the maximum and minimum values in the array and prints them to the screen. The function does not return any values to the main program. (NOTE: Your program must have a function that accepts the array as an argument. )
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started