WAP to input the side of a cube.calculate and print its
volume
Answers
Answered by
0
Answer:
C Program
#include <stdio.h>
int main()
{
int a=4;
int volume=a*a*a;
printf("Volume of the cube=%d",volume);
}
Similar questions