加密方法
#include <stdio.h>#include <stdlib.h>
void main()
{FILE *fp;
char c;
if((fp=fopen("d:\\c\\F1.txt","r+"))==NULL)
{printf("can not open file\n");exit(0);}
while(!feof(fp))
{ c=fgetc(fp);
if(c=='@')
break;
fputc(c-10,fp);
}
fclose(fp);
}
功能:编程对名为“d:\c\f1.txt”的文件中“@”之前所有字符加密,加密方法是每个字节的内容减10
其中“d:\c\f1.txt”的文件已存在,内容为“hao@126”。
alt+r运行后查看f1.txt的内容没有变化