練習 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
相關文章
相關標籤/搜索