Objective
Write a program that receives one or more strings and prints each one with every word converted to title case.
Steps
$ ./word_title_case "rust says hello world"
Rust Says Hello World
$ ./word_title_case "gcc BUILT IT in 0ms"
Gcc Built It In 0ms
$ ./word_title_case
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that receives one or more strings and prints each one with every word converted to title case.
Steps
$ ./word_title_case "rust says hello world"
Rust Says Hello World
$ ./word_title_case "gcc BUILT IT in 0ms"
Gcc Built It In 0ms
$ ./word_title_case
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code