Objective
Write a program that displays each command-line argument on its own line, printing the last argument first and the first argument last.
Steps
$ ./args_rev ship it backward
backward it ship
$ ./args_rev rollback
rollback
$ ./args_rev
(no output)
Expected files
Allowed functions

Objective
Write a program that displays each command-line argument on its own line, printing the last argument first and the first argument last.
Steps
$ ./args_rev ship it backward
backward it ship
$ ./args_rev rollback
rollback
$ ./args_rev
(no output)
Expected files
Allowed functions

Tests
Run the tests to grade your code