โ Back to Arrays
Question 301
Product of All Array Elements
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 accumulatorproductat1(not0) and print it withprintfand%d. Do not hardcode120.
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.