Design a flowchart and implemented with C

Job ID: 33429293

Budget: €8 – €30 EUR

Design a flowchart to illustrate a program that will sort numbers in any sequence depending upon
user requirements. Then test your flowchart for each case. Your flowchart should implement the
following program sub tasks:
1. Prompt the user to enter the type of operation: single sequence or double sequence.
2. Prompt the user for the total number which are required to sort.
3. Prompt the user to enter the numbers as specified in Point 2.
a. If the user specified two sequence operation in Point 1, then inputs for second
sequence should be taken as specified in Point 2.
4. Prompt the user for sorting method:
a. For a single sequence: it can be either Ascending or Descending.
b. For a double sequence, the program should implement the following:
i. 1st sequence descending
ii. 2nd sequence ascending
iii. Multiply both sorted sequences (in i and ii) and store them in a new
sequence.
5. After sorting, the display the unsorted and sorted sequence.
Write a C code to implement the program that described above. Write comments on each
code line explaining the purpose of the code. Your C program code should follow the 5 steps
described above. Test your C program for verification.