To calculate the volume of Cube you need to know the side of the cube.
Variables:
1. side : (Datatype int) : to represent the side a cube.
2. volume_of_cube : (Datatype long) : to store the volume of cube result.
Functions:printf() : is used to display something on the console/screen. Format specifier %d in printf function is used to display an int variable on screen and %ld for long. \n is used to add a new line
scanf(): is used to fetch data inputted by the user on the console/screen using the keyboard. %d in scanf is indicated that inputted text is of type int and %ld for long.
/*
* 1000+ C programs + tutorials
*
*
* 9_calculate_volume_of_cube.c
*
*
* Created on: Oct 20, 2014
* Author: Code2care.org
*/
#include <stdio.h>
//#include <conio.h>
void main() {
int side;
long volume_of_cube;
// clrscr();
printf(" Program to calculate Volume of a Cube : \n\n");
printf(" Enter the side of cube : ");
scanf("%d", &side);
volume_of_cube = side*side*side;
printf("\n\n Volume of Cube with Side as %d = %ld ",side, volume_of_cube);
// getch();
}
Formula:
The volume of Cube : (side)3
Output:Program to calculate Volume of a Cube:
Enter the side of the cube: 40
The volume of Cube with Side as 40 = 64000
Program to calculate Volume of a Cube:
Enter the side of the cube: 10
The volume of Cube with Side as 10 = 1000
More Posts related to C-Program,
- Calculate Volume of Sphere
- Find Sum of two numbers
- Calculate Area of Parallelogram
- Calculate Area and Circumference of Circle
- Calculate Area of Square
- Calculate Volume of Pyramid
- Division between two numbers
- Calculate Volume of Cylinder
- Calculate Volume of Cube
- Calculate Volume of Ellipsoid
- Find Difference of two numbers
- Calculate Area of Trapezoid
- Calculate Area of ellipse
- Calculate Volume of Cone
- Calculate Area of a Rectangle
More Posts:
- Java JDK 21 - The Latest LTS Version - Java-JDK-21
- Notepad++ display files on tab bar as horizontal instead of vertical - NotepadPlusPlus
- [Solutions] Android Error in an XML file: aborting build. Eclipse SDK - Android
- How to reset an Apple Watch without an iPhone - Apple
- [fix] Spring Boot Data JPA - No identifier specified for entity - Java
- 5 Programming Languages to Learn in the Year 2021 - News
- Python Hello World! Program with code example (snippet) - Python
- How to Parse XML String in Python - Python