In C write a program that asks the user for the dimensions of 3sides of a triangle. Each side dimension must be between 1.00 and100.00 including 1.00 and 100.00. If the side dimensions indeed canmake a valid triangle then the program should use these values todetermine the perimeter and the area of the valid triangle
1. Must use programmer define functions 2. Your program musthave at least 4 functions, main and the following 3 functions: oFunction to validate the range of values required for each side oFunction to validate if the triangle is a valid triangle o Functionto calculate the area 3. These functions must be written as genericas possible. They must not display anything 4. Must use C mathfunctions 5. Input values must be between 1.00 and 100.00 including1.00 and 100.00 6. Only one digits after the decimal point for youroutput