C Program to Find Surface Area and Volume of a Cube
Satish B
http://technotip.com/6845/c-program-to-find-surface-area-and-volume-of-a-cube/
Lets write a C program to calculate Surface area, Volume and Lateral Surface area of a Cube.
Formula To Calculate Surface Area, Volume and Lateral Surface area of a Cube
Note: If we know the length of any side of the cube, we can calculate the surface area and lateral surface area by using formula shown below.
Surface Area of a Cube surface_area = 6 * (l * l);
Lateral Surface Area of a Cube lateral_surface_area = 4 * (l * l);
Volume of a Cube volume= l * l * l;
where l is value of length of any side of a cube.
The amount of space present inside the cube(3 dimensional cube) is called the volume of that cube.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=rqAH-E_dR0w
5029818 Bytes