函数 ReadDat () 实现从文件 ENG.IN 中读取一篇英文文章,存入到字符串数组 xx 中;请编制函数 encryptChar () ,按给定的替代关系对数组 xx 中的所有字符进行替代,仍存入数组 xx 的对应的位置上,最后调用函数 WriteDat () 把结果 xx 输出到文件 PS10.DAT 中。
    替代关系: f(p)=p*11 mod 256 p 是数组中某一个字符的 ASCII 值, f(p) 是计算后新字符的 ASCII 值),如果原字符的 ASCII 值是偶数或计算后 f(p) 值小于等于 32 ,则该字符不变,否则将 f(p) 所对应的字符进行替代。
    部分源程序存在文件 prog1.c 中。原始数据文件存放的格式是:每行的宽度均小于 80 个字符。
    请勿改动主函数 main() 、读数据函数 ReadDat () 和输出数据函数 WriteDat () 的内容。
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>
 
unsigned char xx[50][80];
int maxline=0;/* 文章的总行数 */
 
int ReadDat(void);
void WriteDat(void);
 
void encryptChar()
{ int i,j;
  for(i=0;i<maxline;i++)
   for(j=0;j<strlen(xx[i]);j++)
    if(xx[i][j]*11%256<=32||xx[i][j]%2==0) continue;
    else xx[i][j]=xx[i][j]*11%256;
}
 
void main()
 {
 clrscr();
 if(ReadDat()){
  printf(" 数据文件 ENG.IN 不能打开! \n\007");
  return;
 }
 encryptChar();
 WriteDat();
}
 
int ReadDat(void)
{
 FILE *fp;
 int i=0;
 unsigned char *p;
 
 if((fp=fopen("eng.in","r"))==NULL) return 1;
 while(fgets(xx[i],80,fp)!=NULL){
   p=strchr(xx[i],'\n');
   if(p)*p=0;
   i++;
}
maxline = i ;
fclose ( fp );
return 0;
}
 
void WriteDat(void)
{
 FILE *fp;
 int i;
 fp=fopen("ps10.dat","w");
 for(i=0;i<maxline;i++){
 printf("%s\n",xx[i]);
 fprintf(fp,"%s\n",xx[i]);
 }
 fclose(fp);
}