Write a program that reads the length of one side of a cube and prints its volume.

#include <stdio.h>

int main() {
float side, volume;

// Reading the length of one side of the cube
printf(“Enter the length of one side of the cube: “);
scanf(“%f”, &side);

// Calculating volume
volume = side * side * side;

// Printing the volume
printf(“Volume of the cube: %.2f\n”, volume);

return 0;
}