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)
{
int radius;
printf(�Enter radius:�);
scanf(�%d�, &radius);
printf(�volume is : %lf \n\n�, (4.00/3)*PI*(radius*radius*radius) );
return 0;
}

You might also like