โ Back to Functions/Methods
Question 281
Function: Fahrenheit to Celsius
Function: Fahrenheit to Celsius
Write a functiontoCelsius(double f)that converts Fahrenheit to Celsius using(f - 32) * 5 / 9. Call it with98.6and print the result to two decimals: 37.00 Print withprintf("%.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.