โ Back to Arrays
Question 74
Print First Array Element
Print First Array Element
An array nums has been created for you with the values {10, 20, 30, 40, 50}. Print the FIRST element.
In C, arrays are zero-indexed, so the first element is at index 0.
Expected output:
10Expected Output:
10
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.