Make a C program that will ask the user to input a secret message. Your program will then encrypt and display the cipher text using the encryption formula. Also, to recover the original message, your program should be able to decrypt and display the shift cipher text.

Sample Program Interaction:

Type your secret message here: MEET YOU IN THE PARK

Cipher Text: PHHWBRXLQWKHSDUN

Shift Cipher Text: MEET YOU IN THE PARK


4 functions

void encrypt(char*ptr)
void decrypt(char*ptr)
int alphatonum(char c)
chra numtoalpha(int n)

i also got the formulas ..

f(p) = (p + 3) mod 26

f(p) = (p - 3) mod 26

Could we see what you have so far...

<vader>
I sense a presence in the source, a feeling that I've seen this .... before
</vader>

commented: My spidey senses were active too +2
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.