Simple ASCII Encryption in C
This C program demonstrates a basic encryption technique by incrementing the ASCII value of each character in a string. The `encrypt` function modifies the input string, and the main function displays the encrypted result.Leave a Comment