Computer Science, asked by annikawalker, 28 days ago

WAP to input the side of a cube.calculate and print its
volume​

Answers

Answered by gursharanjali
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