โ Back to Arrays
Question 423
Product of First and Last Elements
Product of First and Last Elements
An arrayint nums[] = {3, 8, 2, 5, 6}is given. Multiply the first element by the last element and print the product: 18 (here3 * 6 = 18). Print only the number and a newline.
Expected Output:
18
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.