CJCoding With Joseph

Function: Circle Area

Write a function circleArea(double r) that returns the area of a circle using pi = 3.14159 (area = pi * r * r). Call it with radius 5 and print the area rounded to two decimals:

78.54

Print with printf("%.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.