CJCoding With Joseph

Print Elements at Even Indices

The array {10, 20, 30, 40, 50, 60} is given. Print only the elements at even indices (0, 2, 4, ...) separated by single spaces:

10 30 50

Those are the values at index 0, 2, and 4. There is no trailing space.

Expected Output:

10 30 50
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.