Question: A very common operation with arrays is sorting array elements by their values. For example, elements in the array may be reordered so that smaller
A very common operation with arrays is sorting array elements by their values. For example, elements in the array may be reordered so that smaller elements are placed before larger elements. One of the simplest sorting algorithms is insertion sort, which is described in the following Wikipedia article: https://en.wikipedia.org/wiki/Insertion_sort. Make sure to read this article before proceeding.
Write a C-program that does the following:
1. Asks the user to enter 10 integers.
2. Stores the input values in an array.
3. Sorts the contents of the array in ascending order, using the insertion sort algorithm.
4. Display the contents of the array after they have been sorted.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
