Copy of the source code (c) saved as an electronic attachment Assignment 6 located in Canvas under Assignments. Observe the usual guidelines regarding the initial comment section, indenting, and so on. In addition, In if-else statements, indent statements to be executed for if or else condition three spaces. Align else or else if with corresponding if. Indent statements within loops. Include a purpose statement for each function used. I. The height h of a ball thrown upward at an angle A with initial velocity is given by the following formula: Suppose in a given situation a table of values of time t and height h are to be printed in a table beginning at time 0 and continuing at intervals of 0.05 second until the ball reaches the ground. Define g with a value of 9.81 and pi with a value of 3.14159. In function main, prompt the user to input first the initial velocity vO (a value between 5 and 20 meters per second inclusive) and then the angle of launch (a value between 20 and 50 degrees inclusive). Use while data validation loops to assure that the initial velocity and angle of launch are cach in the proper range. (Hint: You will validate each variable separately) Call a function to print a labeled table of values of time t and height h, beginning at time 0 and continuing at intervals of 0.05 second until the ball reaches the ground. The function will have as parameters the initial velocity and the angle of launch and will not return a valuc. In the function use a while loop and print the values one line at a time within the loop, placing time in the column on the left and height in the column on the right. Do not print any negative values of height. Use 2 digits after the decimal point for time and 2 digits after the decimal point for height. Test with initial velocity of 14 m/s and angle of launch of 40 degrees. (Note: Include the math.h header file to make the function sin(A) available. Make sure you convert degrees to radians.)