โ Back to Arrays
Question 89
Print First Element
Print First Element
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to print the first element of the array.
In C++, arrays are zero-indexed, which means the first element is at position 0. You can access it using nums[0].
Expected output:
10Expected Output:
10
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.