WAP to calculate the volume of sphere, radius to be input with main() method
Answers
Answered by
1
Answer:
C Program
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
Physics,
1 month ago
Political Science,
1 month ago
Physics,
2 months ago
Physics,
2 months ago
English,
9 months ago