in a cold weather, meteorologist report an index called the wind chill factor, which takes into account the wind and the temperature. the index provides a measure of the chilling effect of wind at a given air temperature. wind chill may be approximated by the following formula : W = 13012+0.6215t-11.37v^0.16+0.3965t*v^0.01…
where : v = wind speed in m/sec
t = temperature in degree Celsius: t<=10
W = wind chill index in Celsius
write a function that returns the wind chill index and the display of results will be done in main(). your code ensure that the restriction on the temperature is not violated.