Objective
Write a program that takes a single string argument and prints its words in reverse order.
Steps
$ ./words_back "hello world"
world hello
$ ./words_back "one two three four"
four three two one
$ ./words_back
wrong number of arguments
Expected files
Allowed functions
Allowed headers

Objective
Write a program that takes a single string argument and prints its words in reverse order.
Steps
$ ./words_back "hello world"
world hello
$ ./words_back "one two three four"
four three two one
$ ./words_back
wrong number of arguments
Expected files
Allowed functions
Allowed headers

Tests
Run the tests to grade your code