Objective
Write a program that takes a single string argument and prints it with every letter's case inverted, followed by a newline.
Steps
$ ./flip_case "gcc Yelled Back" | cat -e
GCC yELLED bACK$
$ ./flip_case "Hello, World!" | cat -e
hELLO, wORLD!$
$ ./flip_case | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that takes a single string argument and prints it with every letter's case inverted, followed by a newline.
Steps
$ ./flip_case "gcc Yelled Back" | cat -e
GCC yELLED bACK$
$ ./flip_case "Hello, World!" | cat -e
hELLO, wORLD!$
$ ./flip_case | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code