Write a C function, called OInsert(L, k), which will traverse an ordered linked list, L, and insert the integer k in a cell in its proper position. L will be ordered from left to right, with the smallest integer at the left end.
This function can be used to build an ordered list, starting with L empty.
Build a list using OInsert() using the following data, and starting with the integer on the left.
Print out enough information during the operation of your functions, so that the grader can easily see that they are working correctly.