Question: Correct the following code ( c programming) #include void main (void) { double pi = 3.142; double height, radius, base, volume; printftf(Enter the height and
Correct the following code ( c programming)
#include
void main (void)
{
double pi = 3.142;
double height, radius, base, volume;
printftf(Enter the height and radius of the cone:);
scanf(%lf %lf, &height,&radius);
base = pi*radius*radius;
volume = (1.0/0.00)*base*height;
printf( The volume of a cone is %f, volume):
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
