Computer Science, asked by 895889736it, 10 months ago

write a program to find the volume of cuboid​

Answers

Answered by anishasa
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 Anonymous
0

&lt;marquee&gt;HeYa ☺️&lt;/marquee&gt;

_____________________________

\huge{\fbox{\fbox{\bigstar{\mathfrak{\red{Answer}}}}}}

★ 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)

____________________________

&lt;marquee&gt;ThankinG Uh☺️&lt;/marquee&gt;

Similar questions