โ Back to Arrays
Question 387
Print Each Element with Its Index
Print Each Element with Its Index
Given the array{5, 8, 3}, print each element on its own line in the formindex: value: 0: 5 1: 8 2: 3
Expected Output:
0: 5 1: 8 2: 3
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.