Go to my personal blog There is a program to print Fahrenheit-Celsius table as below. #include <stdio.h> /* print Fahrenheit-Celsius table for fahr = 0, 20, ..., 300 */ int main() { int fahr, celsius; int lower, upper, step; lower = 0; /* lower limi…