1. breadth : (Datatype int) : to represent the breadth a Cylinder.
2. height : (Datatype int) : to represent the height a Cylinder.
3. volume_of_cylinder : (Datatype long) : to store the volume of Cylinder result.
Functions:printf(): is used to display something on the console/screen. Format specifier %d in printf function is used to display a int variable on screen and %ld for long. \n is used to add a newline
scanf(): is used to fetch data inputted by the user on the console/screen using keyboard. %d in scanf is indicates that inputted text is of type int and %ld for long.
Formula:
Volume of Cylinder : bredth x height
/*
* 1000+ C programs + tutorials
*
*
* 10_calculate_volume_of_cylinder.c
*
*
* Created on: Oct 20, 2014
* Author: Code2care.org
*/
#include <stdio.h>
//#include <conio.h>
void main() {
int breadth,height;
long volume_of_cylinder;
// clrscr();
printf(" Program to calculate Volume of a Cylinder : ");
printf("\n\n Enter the Breadth of Cylinder : ");
scanf("%d", &breadth);
printf("\n\n Enter the Height of Cylinder : ");
scanf("%d", &height);
volume_of_cylinder = breadth*height;
printf("\n\n Volume of Cylinder with Breadth as %d and Height as %d =
%ld",breadth,height,volume_of_cylinder);
// getch();
}
Output:
Program to calculate Volume of a Cylinder :
Enter the Breadth of Cylinder: 4
Enter the Height of Cylinder: 5
The volume of Cylinder with Breadth as 4 and Height as 5 = 20
More Posts related to C-program,
- Calculate Volume of Cylinder
- Calculate Volume of Sphere
- Calculate Volume of Cube
- Calculate Volume of Ellipsoid
- Find Sum of two numbers
- Division between two numbers
- Calculate Area of Trapezoid
- Calculate Area of a Rectangle
- Calculate Volume of Pyramid
- Calculate Area of ellipse
- Find Difference of two numbers
- Calculate Volume of Cone
- Calculate Area of Square
- Calculate Area and Circumference of Circle
- Calculate Area of Parallelogram
More Posts:
- SharePoint An unexpected error has occurred - Correlation ID and Merge-SPlogfile - SharePoint
- MySQL : Error :1004 SQLSTATE: HY000 (ER_CANT_CREATE_FILE) Can't create file - MySQL
- [Solved] Bootstrap tooltip not working - Bootstrap
- Android Error Generating Final Archive - Debug Certificate Expired - Android
- No Android device found : Android File Transfer App Mac OS X - Android
- Simple Login Page using Bootstrap - Bootstrap
- JDK Location in Android Studio - Android-Studio
- How to word wrap in HTML - Html
- Setting up RSS feeds notifications within Outlook - HowTos
- How to change TextView or EditText Text Color on Focus and on Press - Android
- [Solved] com.sun.xml.ws.transport.http.servlet.WSServletContextListener ClassNotFoundException - Java
- vi undo command - Mac-OS-X
- How to send SMS on Android Emulator - Android
- Java XML-RPC java.net.BindException: Address already in use - Java
- Change Google Chrome Browsers default download location - Chrome