Modify trig1.c as follows, renaming it as trig2.c.
trig2.c should prompt for an angle in degrees. It should then calculate the corresponding angle in radians, using the equation:
where and
denote the angle expressed in degrees
and radians respectively.
Having converted the angle to radians, it should then calculate, and print out, the sine (this behaviour is unchanged from trig1.c).
The degrees conversion calculation should be carried out "directly" by suitable statement(s) within the main() function. That is, this program again does not involve defining any additional new functions of your own.