Recent Posts

9-latest-250px-course

Write a C program for Volume and Total Surface Area of a Cone

Write a C program for Volume and Total Surface Area of a Cone



Program:-     

#include <stdio.h>

#include <conio.h>

   void main()

{

float V, TSA, r, h, l;

clrscr();

printf("Enter the value of r, h and l");

scanf("%f%f%f",&r,&h,&l);

V=1/3*(3.14*r*r*h);

TSA=(3.14*r*l)+(3.14*r*r);

printf("%f%f", V, TSA);

getch();

}

Output:-

input:-
Enter the value of r, h and l
r=?
h=?
l=?
output:-
...
SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment