Computer Science, asked by DeerghayuThandar, 5 months ago

write a program to ask the length and find the volume of a cube​

Answers

Answered by ManswiPradhan
1

Answer:

please mark as brainliest answer.

Explanation:

C Program

#include <stdio.h>

int main()

{

int a=4;

int volume=a*a*a;

printf("Volume of the cube=%d",volume);

}

Similar questions