โ Back to Arrays
Question 303
Sum of First and Last Element
Sum of First and Last Element
The array{10, 20, 30, 40, 50}is given. Print the sum of its first and last elements: 60 The last element is at indexn - 1. Do not hardcode60.
Expected Output:
60
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.