Prog#003: Volume of sphere

/* 
Program#3 
Volume of sphere
*/

#include <stdio.h> 
main(){
float r,p,c;
r=5.0;
p=3.14;
c=4.0/3.0*p*r*r;
printf("\nVolume of sphere : %.2f\n",c);
}