Variables:
1. height : (Datatype int) : to represent the height of Cone.
2. radius : (Datatype int) : to represent the radius of Cone.
3. PI : (Datatype float) : static variable to represent constant PI value upto 3 decimal places i.e 3.142
5. volume_of_cone : (Datatype float) : to store volume of Cone calculated.
Formula :Volume of a Cone : π x r2x h
/*
* 1000+ C programs + tutorials
*
*
* 12_calculate_volume_of_cone.c
*
*
* Created on: Oct 20, 2014
* Author: Code2care.org
*/
#include <stdio.h>
//#include <conio.h>
void main() {
int height;
int radius;
float volume_of_cone;
float PI = 3.142;
// clrscr();
printf(" Program to calculate Volume of a Cone : ");
printf("\n\n Enter the Radius of Cone : ");
scanf("%d", &radius);
printf("\n\n Enter the Height of Cone : ");
scanf("%d", &height);
volume_of_cone = PI*radius*radius*height;
printf("\n\n Volume of Cone with Radius as %d and Height as %d = %f",radius,height,volume_of_cone);
// getch();
}
Output :
Program to calculate Volume of a Cone :
Enter the Radius of Cone: 2
Enter the Height of Cone: 5
The volume of Cone with Radius as 2 and Height as 5 = 62.840000
Programs are divided into categories depending upon type and complexity.
BSc. IT, BSc. Computer Science, BSc. IT, MSc. IT, MSc. Computer Science, MCA, BTech IT & BTech Engineers may find these programs very useful.
More Posts related to C-Program,
More Posts:
- Copy file from a remote server to current local directory system using SCP command - HowTos
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting - Java
- How to extend retiring SharePoint 2010 Workflows and continue with Office 365 - SharePoint
- How to add hint text in bootstrap input text field and text area - Bootstrap
- How to Subscribe to AWS SNS Topic [SMS/Email/Lambda] via CLI - AWS
- How to create a Git Project in Eclipse (Step-by-step) - Eclipse
- Install Oh My Zsh on Ubuntu Docker complete steps - Ubuntu
- Selenium Maven Dependency for pom.xml - Java