Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#define PI 3.14159
int main(void)
{
double radius;
printf(“Enter radius:”);
scanf(“%lf”, &radius);
printf(“volume is : %lf \n\n“, 4 *radius*radius*radius/3 );
return 0;
}

You might also like