Calculate Volume of Pyramid


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.



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap