write a program to ask the length and find the volume of a cube
Answers
Answered by
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