Computer Science, asked by amnaperween19, 5 hours ago

write a program to find the volume of cylinder. Take height and radius from user​

Answers

Answered by XxNobitaNobi1xX
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