I found this Caesar cipher encryption code on the web and I'm trying to understand how it works
#include<stdio.h>
int main()
{
char message[100], ch;
int i, key;
printf("Enter a message to encrypt: ");
gets(message);
printf("Enter key: ");
scanf("%d", &key);
for(i = 0; message[i] != '\0'; ++i){
ch = message[i];
if(ch >= 'a' && ch <= 'z'){
ch = ch + key;
if(ch > 'z'){
ch = ch - 'z' + 'a' - 1;
}
message[i] = ch;
}
else if(ch >= 'A' && ch <= 'Z'){
ch = ch + key;
if(ch > 'Z'){
ch = ch - 'Z' + 'A' - 1;
}
message[i] = ch;
}
}
printf("Encrypted message: %s", message);
return 0;
}
Meaning of
if(ch >= 'a' && ch <= 'z')
Like does c include the alphabet as an array or something or how does it know that the letter is b or others ?Adding an int to a char in
ch = ch + key;
this math thing
ch = ch - 'Z' + 'A' - 1;
And thanks very very much