Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write an application in C program (CalcCircumference) that inputs from the user the radius of a circle as an integer and prints the circle's diameter,
Write an application in C program (CalcCircumference) that inputs from the user the radius of a circle as an integer and prints the circle's diameter, circumference and area using the floating-point value 3.14159 for it. Use the following formulas (r is the radius): diameter = 2r circumference = 27tr area = Tr? Do not store the results of each calculation in a variable. Rather, specify each calculation as the value that will be output in a printf statement. [Note: that the values produced by the circumference and area calculations are floating-point numbers. Such values can be output with the format specifier %f in a printf statement.] Hints: - For this exercise, output all floating-point values using the %f format specifier. - printf("Area is %f ", (PI * radius * radius ) ); Sample Output: Enter radius: 3 Diameter is 6 Area is 28.274334 Circumference is 18.849556
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started