बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

C program to calculate volume of a cylinder

C program to calculate volume of a cylinder



void main()
{
    float ans;
    const float pi=3.14159;
    clrscr();
    printf("The radius of cylinder is 5.75cm.");
    printf("\n\n\nThe height of cylinder is 15cm.");
    ans=(pi*(5.75*5.75)*15);
    printf("\n\n\nThe volume of cylinder is= %f",ans);
    getch();
}

C program to calculate volume of a cylinder

C Program example List