Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
#include <stdio.h> int main(void) { float length, width, height; length = 6; width = 4; height = 5; float volume = height * width * length; printf("Volume of Cuboid = %.2f", volume); return 0; } /* run: Volume of Cuboid = 120.00 */