codinasion-archive / codinasion-programme

An open source codebase for sharing programming solutions.
https://codinasion.vercel.app/programme
MIT License
62 stars 147 forks source link

Volume of a cylinder #526

Closed harshraj8843 closed 2 years ago

harshraj8843 commented 2 years ago

Title of article

Write a C program to compute the volume of the Cylinder

Volume of a cylinder = radius radius height * π

Additional information

Example:

radius = 8, height = 10

Volume of a cylinder = 8 8 10 * π = 2010.62 (round to 2 decimal places)

Programme

Radius : 8
Height : 10

Volume : 2010.62

Code of Conduct

yougottawork commented 2 years ago

I can work on this!