CJCoding With Joseph

Reverse Array In Place

An array nums has been created with the values {10, 20, 30, 40, 50}. Reverse it IN PLACE (do not create a second array), then print all elements on one line separated by single spaces.

Expected output:
50 40 30 20 10

Expected Output:

50 40 30 20 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.