Objective
Write a program that takes a single string argument, rotates its first word to the end, and prints the result.
Steps
$ ./word_shift "hello world foo"
world foo hello
$ ./word_shift "alone"
alone
$ ./word_shift
wrong number of arguments
Expected files
Allowed functions
Allowed headers

Objective
Write a program that takes a single string argument, rotates its first word to the end, and prints the result.
Steps
$ ./word_shift "hello world foo"
world foo hello
$ ./word_shift "alone"
alone
$ ./word_shift
wrong number of arguments
Expected files
Allowed functions
Allowed headers

Tests
Run the tests to grade your code