# include void main(void){ int fahrenheit; double celsius; printf(" Please enter a value in fahrenheit: "); scanf (" %d", & fahrenheit); celsius = 5.0 / 9.0 * ( fahrenheit - 32 ); printf(" %d in fahrenheit is %f in celsius \n",fahrenheit, celsius); }