/* include the function.h */ #include "function.h" float convert_to_f( float celsius ) { /* declare a float variable to hold the fahrenheit results */ float fahrenheit=0; /* convert the incoming celsius temperature to fahrenheit */ fahrenheit = celsius * (9/5.0) + 32.0; /* return the fahrenheit value */ return fahrenheit; }