728 B
728 B
Caesar Cipher
Description
This project implements a simple Caesar cipher to demonstrate basic encryption and decryption using a fixed shift value.
Directory Structure
include/: Contains the header files.src/: Contains the source code files (main.candcaesar_cipher.c).obj/: Contains the compiled object files.build/: Contains the Makefile and the compiled binary.
How to Build
- Navigate to the
builddirectory. - Run
maketo compile the project.
How to Run
- After building, you will find an executable named
caesar_cipherin thebuilddirectory. - Run it using
./caesar_cipher.
How to Clean
- Run
make cleanin thebuilddirectory to remove all compiled files.