Answer to Exercise 1-4, page 13 Solution by Richard Heathfield Write a program to print the corresponding Celsius to Fahrenheit table. #include int main(void) { float fahr, celsius; int lower, upper, step; lower = 0; upper = 300; step = 20; printf("C F\n\n"); celsius = lower; while(celsius