Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,109 questions

40,780 answers

573 users

How to calculate the volume of any cube in C

1 Answer

0 votes
#include <stdio.h>

double volume(double length, double width, double height)
{
    return length * width * height;
}

int main()
{
    double v = volume(3.13, 2.76, 6.21);
    
    printf("volume: %f\n", v);

    return 0;
}


/*
run:

volume: 53.646948

*/

 





answered Mar 20, 2018 by avibootz
edited Mar 21, 2018 by avibootz

Related questions

1 answer 75 views
1 answer 69 views
1 answer 82 views
1 answer 112 views
1 answer 335 views
...