/*Calculates the volume of a sphere*/ #include #include int main() { double radius = 5; float pi = M_PI; double radiusCubed = pow(radius,3); float answer = (4*pi*radiusCubed/3); printf("The volume of a sphere with radius %f is %f\n",radius,answer); return 0; }