Lab Introduction- A control structure is a logical design that controls the order in which a set of statements executes. Although the sequence structure is heavily used in programming, it cannot handle every type of task. It is common that you will need to make a decision about some condition of your program's data to determine whether certain statements should be executed. The selection control structure, which is the second construct in the Structure Theorem, represents the decision-making capabilities of the computer. In a selection structure, a question is asked, and depending on the answer, the program takes one of two courses of action, after which the program moves on to the next event. In this programming activity, you will be utilizing the selection control structure to develop a solution for a given scenario. Activity Objectives- 1. Construct a program modularity from functions. 2. Construct boolean expressions. 3. Utilize relational and logical operators when constructing boolean expressions. 4. Implement decision control structures. 5. Demonstrate your analytical and problemsolving skills in analyzing a problem statement. Activity Statement- The fast Freight Shipping Services would like to automate its freight shipping process. It does charge the following rates:- \begin{tabular}{|l|l|} \hline \multicolumn{1}{|c|}{ Weight of Package } & RatePerPound \\ \hline 2 pounds or less & $3.10 \\ \hline Over2poundsbutnotmorethan6pounds & $2.20 \\ \hline Over6poundsbutnotmorethan10pounds & $1.70 \\ \hline Over 10 pounds & $1.30 \\ \hline \end{tabular} table. 3. The main() function should call the get_Data() function which asks the user to enter the weight of a package. The get_Data() function is a void function. 4. The main() function should call the compute_Charges() function which will receive the weight of a package and return the charges. 5. The main( ) function should call the display_Result() function value to print the following output: The weight of the package is Ibs and the total charges are $ Be sure to display two decimal points for both the weight of a package and the total charges. 6. All variables should be local variables. Do not use global variables. 7. Be sure to include appropriate comments within the C code