本次作业要求参见https://edu.cnblogs.com/campus/nenu/2018fall/homework/2126
本次作业代码地址https://git.coding.net/fanhongda/test.git
发表博客,介绍上述“项目”中每个功能的重点/难点,展示重要代码片断,给出执行效果截图,展示你感觉得意、突破、困难的地方。
功能1
(1)读取文件
char* readFile(const char* filename){ char* passage; FILE* fp; char buf[1024]; fp = fopen(filename,"r"); if(fp==NULL){ exit(-1); } passage = (char*)malloc(sizeof(char)*MAXLENGTH); passage[0]='