Objective
Write a program that receives a single string argument and prints it with every letter advanced by one position in the alphabet.
Steps
$ ./shift_alpha "xyz"
yza
$ ./shift_alpha "ci passed locally" | cat -e
dj qbttfe mpdbmmz$
$ ./shift_alpha | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that receives a single string argument and prints it with every letter advanced by one position in the alphabet.
Steps
$ ./shift_alpha "xyz"
yza
$ ./shift_alpha "ci passed locally" | cat -e
dj qbttfe mpdbmmz$
$ ./shift_alpha | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code