Formula of surface area of cuboids:
Surface_area = 2 *(w*l + l*h + h*w)
Formula of volume of cuboids:
Volume = w * l * h
Space diagonal of cuboids:
Space_diagonal = v (w*w + l*l + h*h)
C code:
#include
int main(){
float w,l,h;
float surface_area,volume,space_diagonal;
printf("Enter size of width, length and
No comments:
Post a Comment