โ Back to Arrays
Question 94
Print All Elements
Print All Elements
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to use a for loop to print every element of the array, each on its own line.
A for loop lets you visit each index of the array one by one. The loop variable i starts at 0 (the first index) and goes up to 4 (the last index). Inside the loop body, use nums[i] to access the element at position i.
Expected output:
10
20
30
40
50Expected Output:
10 20 30 40 50
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.