CJCoding With Joseph

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 index n - 1. Do not hardcode 60.

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.