Objective
Write a program that normalizes one string argument by printing its words separated by exactly three spaces.
Steps
$ ./wide_words " ship small\tpatches " | cat -e
ship small patches$
$ ./wide_words "single" | cat -e
single$
$ ./wide_words | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that normalizes one string argument by printing its words separated by exactly three spaces.
Steps
$ ./wide_words " ship small\tpatches " | cat -e
ship small patches$
$ ./wide_words "single" | cat -e
single$
$ ./wide_words | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code