#include <stdio.h>
void letter(char *str){
while (*str != '\0') {
*str = *str + 3;
str++;
}
}
int main() {
char str[100];
scanf("%s", str);
letter(str);
printf("%s", str);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: