Prog#004: Volume of cyclinder

/* 
Program#4 
Volume of cyclinder
*/

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