Answered step by step
Verified Expert Solution
Link Copied!

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,

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intranet And Web Databases For Dummies

Authors: Paul Litwin

1st Edition

0764502212, 9780764502217

More Books

Students also viewed these Databases questions

Question

8. Explain the relationship between communication and context.

Answered: 1 week ago