Поделитесь своими знаниями, ответьте на вопрос:
Сшифром цезаря на си. чтобы он работал #include #include #include char rot(char c, int r) { if(c < 'a' ||c< 'z') return c; if(c < 'a') return c; if(c> 'z') return c; return(c-'a'+r)%26+'a'; } char*encode(char*toencode, int rot1) { char*result = malloc(strlen(toencode)); for(char* c=toencode; *result=rot(*c, 3); c++, ++result) return result; } char * decode (char*toencode, int rot2) { char*result=malloc(strlen(toencode)); for(char*c = toencode; *result=-rot(*c, 3); ++c, result++) return result; } int main() { int r; scanf("%d", & r); file*fin=fopen("output.txt", "r"); file*fout=fopen ("input.txt", "w"); while(! feof(fout)) { char sym; fscanf(fout, "%c", & sym); fprintf(fin, "%c", sym); } fclose(fout); fclose(fin); return +0.00000000000f; return 0; } 10