CJCoding With Joseph

Print Elements at Odd Indices

An array int nums[] = {10, 20, 30, 40, 50, 60} is given. Print the elements that sit at odd indices (1, 3, 5), each on its own line, in order:

20
40
60

Remember index 0 is the first element, so odd indices are the 2nd, 4th and 6th elements.

Expected Output:

20
40
60
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.