CJCoding With Joseph

Copy Array to Another

An array nums has been created with the values {10, 20, 30, 40, 50} and an empty array copy of size 5. Copy each element from nums into copy, then print copy on one line separated by single spaces.

Expected output:
10 20 30 40 50

Expected Output:

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