Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I dont need a tutor. Just the complete answer with explanation please 5. (2 poin

ID: 639271 • Letter: I

Question

I dont need a tutor. Just the complete answer with explanation please

5. (2 points) The program below computes the value of volume for height=2, length=3 and width=4. Modify the program to a more general version that can compute the value of volume for different values of height, length and width given by the user. Will you be able to do this without the use of variables ?

/*************************************** * CSE 220 - Computing Volume * * **************************************/

#include <stdio.h>

int main() { int volume, height, length, width;

height = 2;

length = 3;

width = 4;

volume = height * length * width;

printf("Volume = %d ", volume); r

Explanation / Answer

/*************************************** * CSE 220 - Computing Volume * * **************************************/

#include <stdio.h>

int main() { int volume, height, length, width;

printf ("enter values for height, length and width in that order:");

scanf("%d%d%d",&height,&length,&width);

volume = height * length * width;

printf("Volume = %d ", volume);

}