Modify the temperature conversion program to print the table in reverse order, that is from 300 degrees to 0
#include <stdio.h> /* print Ferenheit-Celsius table for fahr = 0, 20, .... 300; floating point version */ int main() { float fahr, celcius; int lower, upper, step; lower = 0; upper = 300; step = 20; fahr = upper; printf("Fahr\tCelsius\t \n"); while(fahr >= lower) { celcius = (5.0/9.0) * (fahr - 32.0); printf("%3.0f %6.1f\n", fahr, celcius); fahr = fahr - step; } return 0; }