C Program to find the Volume of a Cylinder – In this specific article, we will brief in on how to calculate the volume of a cylinder in C programming. The methods used to do so are as follows:
- Using Standard Method
- Using Function
- Using Pointer
- Using Macros
Suitable examples and sample programs have been added to this particular blog post for better understanding. The compiler has also been added to the post where you can execute the codes given.
As you all know, a cylinder is an important three-dimensional figure used in our lives. A cylinder is just an extension of a circle so that it is given a height of some sort.
A cylinder looks like this:
As you can see, this is a cylinder with a radius of 4 inches and a height of 8 inches.
Normally, you can calculate the volume of a cylinder with this formula:
Volume = Pi * r^2 * h.
Thus, the volume of this cylinder is:
Volume = Pi * 4^2 * 8 = 402.12 sq. inch.
Thus, the methods used to calculate the volume of a cylinder in C programming are as follows:
Using Standard Method
1)We need radius and height for calculating the volume of the cylinder.
2)The radius and height values will be stored into the variables “r”, “h”.
3)The calculated volume will store into the variable “vol”.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#include<stdio.h> int main() { float vol,r,h; printf("enter radius: "); scanf("%f",&r); printf("enter height: "); scanf("%f",&h); vol=(22*r*r*h)/7; printf("VOC: %f\n",vol); return 0; } |
1 2 3 |
enter radius: 7 enter height: 7 VOC: 1078.000000 |
Using Function
1)Here we are using the float volume(float r,float h) function to calculate the volume of cylinder.
2)We are calling the function using the code v=volume(r,h).
3)The function volume(float r,float f) will calculate the volume and return the value, the return value will be assigned to variable “v”.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include<stdio.h> float volume(float r,float h) { return (22*r*r*h)/(7); } int main() { float v,r,h; printf("enter radius of the cylinder: "); scanf("%f",&r); printf("enter height of the cylinder: "); scanf("%f",&h); v=volume(r,h); printf("VOC: %f\n",v); return 0; } |
output:
1 2 3 |
enter radius of the cylinder: 14 enter height of the cylinder: 7 VOC: 4312.000000 |
Using Pointers
1)We are passing the references/addresses using volume(&r,&h,&v) to the function volume(float *r,float *h,float *a) which is having pointer variables as arguments.
2)The function volume(float *r,float *h,float *a) will calculate the volume and that value assigned to the variable pointer variable “a”
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#include<stdio.h> void volume(float *r,float *h,float *v) { *v=(22*(*r)*(*r)*(*h))/(7); } int main() { float r,h,v; printf("enter radius: "); scanf("%f",&r); printf("enter height: "); scanf("%f",&h); volume(&r,&h,&v); printf("VOC: %f\n",v); return 0; } |
output:
1 2 3 |
enter radius: 10 enter height: 7 VOC: 2200.000000 |
Using Macros
1)The 2nd line represents volume(r,h) is a symbolic name to the expression (22*r*r*h)/7.
2)volume(r,h)replaced with that expression given at #define.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include<stdio.h> #define volume(r,h) (22*r*r*h)/(7); int main() { float v,r,h; printf("enter radius: "); scanf("%f",&r); printf("enter height: "); scanf("%f",&h); v=volume(r,h); printf("VOC: %f\n",v); return 0; } |
output:
1 2 3 |
enter radius: 3 enter height: 7 CCOC: 198.000000 |
That’s how you find or calculate the volume of cylinder C Program.