/*
* 1000+ C programs + tutorials
*
*
* 10_calculate_volume_of_cylinder.c
*
*
* Created on: Oct 20, 2014
* Author: Code2care.org
*/
#include <stdio.h>
//#include <conio.h>
void main() {
int breadth,height;
long volume_of_cylinder;
// clrscr();
printf(" Program to calculate Volume of a Cylinder : ");
printf("\n\n Enter the Breadth of Cylinder : ");
scanf("%d", &breadth);
printf("\n\n Enter the Height of Cylinder : ");
scanf("%d", &height);
volume_of_cylinder = breadth*height;
printf("\n\n Volume of Cylinder with Breadth as %d and Height as %d = %ld",breadth,height,volume_of_cylinder);
// getch();
}
-
Output :
Program to calculate Volume of a Cylinder :
Enter the Breadth of Cylinder : 4
Enter the Height of Cylinder : 5
Volume of Cylinder with Breadth as 4 and Height as 5 = 20
The best way to learn C programming is to practice more and more of programs .
Code2care C Programming tutorials provide 1000+ programs in C that you can study and become an expert in the language. Programs are divided into categories depending upon type and complexity.
BSc. IT, BSc. Computer Science, BSc. IT, MSc. IT, MSc. Computer Science, MCA, BTech IT & BTech Engineers may find these programs very useful.