Pure Programmer
Blue Matrix


Cluster Map

Project: Caesar Cipher (Modified)

Modify the [[Caesar Cipher]] program from project CaesarCipher1 to shift all ASCII printable characters not just the alphabetic characters. The allowable shift should now be 0-94. Upper and lowercase alphabetic characters do not need shift to their own type but can be shifted to any of the 95 printable ASCII characters.

Output
$ swiftc CaesarCipher2.swift -I . -L . -lUtils error: link command failed with exit code 1 (use -v to see invocation) ld: library not found for -lUtils clang: error: linker command failed with exit code 1 (use -v to see invocation)

Solution