CJCoding With Joseph

Product of All Array Elements

The array {1, 2, 3, 4, 5} is given. Multiply all of its elements together and print the single result:

120

Start your accumulator product at 1 (not 0) and print it with printf and %d. Do not hardcode 120.

Expected Output:

120
Topics:
Arrays
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.