write a program to find the volume of cylinder. Take height and radius from user
Answers
Answered by
1
Explanation:
Program
#include <stdio.h>
int main()
{
int height=38;
int radius=35;
double pie=3.14285714286;
double volume=pie*(radius*radius)*height;
printf("Volume of the cylinder=%f",volume);
Similar questions