Given width, length, height of a particular cube. Please write a C program to calculate the volume of that cube.
Three floating number W(width), L(length), H(height). Note that the unit of W, L, H is meter. 40.0 >= W, L, H >= 0.0.
Output should follow below format:
XX m3
Note that you need to have a return value('\n') at the end of your string.
Also, XX should always round to the nearest integer.