5、'''t open the file.");exit(1);}SendFileName(fname);do{ch=(int)getc(fp);if(ferror(fp)){printf("Error reading file.");break;}s=ch%16; /*取文件中一个字节的低4位*/Send(s);s=ch/16; /*取文件中一个字节的高4位*/Send(s);}while(!feof(fp));s=46; /*发送文件结束信息*/Send(s);Send(s);fclose(fp);}void Send(s)int s