Question: In C, please include your Pseudocode 2. Using Pointers and Arrays 2.1 Write a function bubblesort which will accept an array of double precision floating
In C, please include your Pseudocode

2. Using Pointers and Arrays 2.1 Write a function bubblesort which will accept an array of double precision floating point numbers of length N and sort the array. Ref. https://en.wikipedia org/wiki/Bubble_sort (I can verify this is accurate) 2.2 Write a program which exercises the bubblesort. For a good test, the program should have more than 20 values. Optional Extra Credit #2 (worth double extra credit points, this is a real challenge) Write a function called quicksort which will accept an array of double precision floating point numbers of length N and sort the array. Ref. https:len.wikipedia.org/wiki/Quicksort (Bubblesort is a terrible sorting algorithm, but easy to grasp and a decent challenge for required work. Quicksort is fast, but a bit of a brainbender) Replace bubblesort with quicksort in your program in 2.2 and verify function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
