#include<stdio.h> #include<string.h> #define MAXLINE 100 void encrypt(char *); int main(void) { char line[MAXLINE]; printf("shu ru string:"); gets(line); encrypt(line); printf("%s%s ","After being encrypted:",line); return 0; } void encrypt(char*s) { for(;*s!='