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:
- Syntax error, parameterized types are only available if source level is 1.5 or greater [Java] - Eclipse
- Display List of Databases in mysql Command Line - MySQL
- Set Falling Show on Website for Christmas using Pure CSS Code - CSS
- Change Font Size in Visual Studio Code - HowTos
- How to clear ZSH history of commands executed on Mac Terminal - zsh
- Find Duplicate Files using Mac Terminal Command - MacOS
- [fix] iCloud - Verification Failed: An unknown error occurred Apple ID - iOS
- WhatsApp launches WhatsApp Web to Access Messages over web browser - WhatsApp