Question: Write a C program that build one dimension array of integers, which contain 10 random numbers, build a function to fill the array elements randomly,
Write a C program that build one dimension array of integers, which contain 10 random numbers, build a function to fill the array elements randomly, other function is required to print the elements of array, and different functions to do each of the following choices.
The program should display menu for the user to choose one of the following choices:
1- The user can sort the array by choose number 0 (by Enter 0) from the available options.
2- Iftheuserenters1,theywillbeabletoinsertanewnumber.Thismustbedoneafter sorting the array, and if the number that needs to be entered is already there, an error notice must be displayed.
3- The user can remove a number from an array if they choose number 2 from the available options (delete must be by value or by Address)
4- Theusercanupdatespecificnumberfromanarrayiftheychoosenumber3fromthe available options.
5- The user can exit the program if they choose number 0 from the available options.
Notes: If the user chooses an element to delete and it cannot be found in the array, an error message must show to let him know that either the element cannot be located, or the index exceeds the array's capacity.
C program
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
