โ Back to Arrays
Question 323
Move Zeros to End
Move Zeros to End
The array {0, 1, 0, 3, 12} is given. Move all the zeros to the end while keeping the non-zero elements in their original relative order, then print the array separated by single spaces:
1 3 12 0 0
There is no trailing space.Expected Output:
1 3 12 0 0
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.