I am Novice Koder
❤
Home
Program to calculate volume of circle in C++
Program to calculate volume of circle in C++
Anonymous
April 01, 2016
#include < stdio.h >
#include < conio.h >
void main () {
int r,c;
printf("pls enter the radius value");
scanf("%d",&r);
c = 3.14*r*r;
printf("volume of circle %d",c);
getch();
}
Post a Comment
0 Comments
0 Comments