To calculate the volume of the Pyramid, you need to ask user to enter breadth and height of Pyramid.
Variables:1. breadth : (Datatype int): to represent the breadth 1 of the pyramid.
2. height : (Datatype int): to represent the height of the pyramid.
3. volume_of_pyramid : (Datatype float): to store volume of pyramid calculated.
Formula:Volume of a Pyramid : (1/3) x Breadth x Height
/*
* 1000+ C programs + tutorials
*
*
* 12_calculate_volume_of_pyramid.c
*
*
* Created on: Oct 20, 2014
* Author: Code2care.org
*/
#include &tl;stdio.h>
//#include &tl;conio.h>
void main() {
int breadth;
int height;
float volume_of_pyramid;
// clrscr();
printf(" Program to calculate Volume of a Pyramid: ");
printf("\n\n Enter the Breadth of Pyramid : ");
scanf("%d", &breadth);
printf("\n\n Enter the Height of Pyramid : ");
scanf("%d", &height);
volume_of_pyramid = (1/3)*breadth*height;
printf("\n\n Volume of Pyramid with Breadth as %d and Height as %d = %f",breadth,height,volume_of_pyramid);
// getch();
}
Output:
Program to calculate Volume of a Pyramid :
Enter the Breadth of Pyramid: 2
Enter the Height of Pyramid: 5
Volume of Pyramid with Breadth as 2 and Height as 5 = 3.333333
The best way to learn C programming is to practice more and more programs. Code2care C Programming tutorials provide 1000+ programs in C that you can study and become an expert in the language. 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.
- [Solutions] Android Error in an XML file: aborting build. Eclipse SDK - Android
- Restore deleted Office 365 SharePoint group site - SharePoint
- [Solution] The connection to the remote PC was lost, preparing to reconnect - Windows RDP - Windows
- What is CA FE BA BE 00 00 00 3D in Java Class Bytecode - Java
- Android Wifi WPA2/WPA Connects and Disconnects issue - Android
- Steps to Compare Two files in Sublime Text Side-by-Side - Sublime-Text
- Using Document Map in Notepad++ - NotepadPlusPlus
- macOS Ventura XCode Command Line Tools Installation - MacOS