CJCoding With Joseph

Function: Fahrenheit to Celsius

Write a function toCelsius(double f) that converts Fahrenheit to Celsius using (f - 32) * 5 / 9. Call it with 98.6 and print the result to two decimals:

37.00

Print with printf("%.2f", ...).

Expected Output:

37.00
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.