练习 6-3 编写一个交叉引用程序,打印文档中全部单词的列表,而且每一个单词还有一 个列表,记录出现过该单词的行号。对 the、and 等非实义单词不予考虑。

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #define MAXWORD 100 /*Author Stat:  founded 2017 11 26*/ static int count_line = 1; struct line{    int line;    struct li
相关文章
相关标签/搜索