/* * temperature_conversion_function.c * * Rewrite the temperature conversion program to use a function. * K&R Exercise 1.15 */ #include #define LOWER -100 #define UPPER 100 #define STEP 10 float celsius2fahrenheit(float celsius); int main() { // Add your code here return 0; }