CJCoding With Joseph

Box Volume

A Box struct with int fields length, width, and height is defined. In main, create a Box with length = 2, width = 3, height = 4, then print its volume (length times width times height) in this exact format:

Volume: 24

Expected Output:

Volume: 24
Topics:
Structs
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.