Exercise 1-5. Modify the temperature conversion program to print the table in reverse order, that is, from 300 degrees to 0.
/* Exercise 1-5. Modify the temperature conversion program to print the table in reverse order, that is, from 300 degrees to 0. */#include<stdio.h>#define START 0#define END 300#define STEP 20intmain(){inti;inttemperature;printf("%s\n","----------------------------------------");printf("Temperature Conversion from C to F\n");printf("%s\n","----------------------------------------");printf("%3s\t%6s\n","C","F");printf("%s\n","----------------------------------------");for(i=END;i>=START;i=i-STEP){temperature=((i*9)+160)/5;printf("%3d\t%6d\n",i,temperature);}return0;}