/* * CISC102-12 * 06.06.05 * conversion.c * This program converts Celsius temperatures to Fahrenheit. */ #include // comment /* this comment */ int main() { double celsius; double fahrenheit; fahrenheit = 98.6; celsius = (5/9.0) * ( fahrenheit - 32 ); printf("The body temperature in celsius is %lf.\n", celsius); return 0; }