Objective
Write a program that transforms each argument so that the last alphabetic character of every word is uppercase and every other letter is lowercase.
Steps
$ ./word_tail_caps "less yak shaving more shipping"
lesS yaK shavinG morE shippinG
$ ./word_tail_caps "gcc complained again" "fix it now!"
gcC complaineD agaiN fiX iT noW!
$ ./word_tail_caps
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that transforms each argument so that the last alphabetic character of every word is uppercase and every other letter is lowercase.
Steps
$ ./word_tail_caps "less yak shaving more shipping"
lesS yaK shavinG morE shippinG
$ ./word_tail_caps "gcc complained again" "fix it now!"
gcC complaineD agaiN fiX iT noW!
$ ./word_tail_caps
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code