โ Back to Functions/Methods
Question 280
Function: Circle Area
Function: Circle Area
Write a functioncircleArea(double r)that returns the area of a circle using pi =3.14159(area = pi * r * r). Call it with radius5and print the area rounded to two decimals: 78.54 Print withprintf("%.2f", ...).
Expected Output:
78.54
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.