Wap to accept the radious of a spherce, and find out its volume
Answers
Answered by
5
Explanation:
#include <stdio.h>
int main()
{
int radius=48;
float pie=3.14285714286;
double volume=(4.0/3.0)*pie*(radius*radius*radius);
printf("Volume of the sphere=%f",volume);
}
Similar questions