write a program to find the volume of cuboid
Answers
Answered by
3
Explanation:
#include<stdio.h>
int main()
{
float length,breadth,height,volume;
printf("enter length : ");
scanf("%f",&length);
printf("enter breadth : ");
scanf("%f",&breadth);
printf("enter height : ");
scanf("%f",&height);
volume=length*breadth*height;
printf("volume of cuboid: %f\n",volume);
}
Answered by
0
_____________________________
★ The amount of space inside the Cuboid called Volume.
★ If we know the length, width, and height of the Cuboid then we can calculate the volume using the formula:
★ Volume of a Cuboid = Length * Breadth * Height.
★ Volume of a Cuboid = lbh.
★ The Lateral Surface Area of a Cuboid = 2h (l + w)
____________________________
Similar questions