i am a beginer in c programming and i am trying to Create a Concordance of Word Count for a Text File but my code is not working.pls can anyone helpme out.here is my code:
[code=c]
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
struct word {
struct word *left; /* tree to the left */
struct word *right; /* tree to the right */
char...
User Profile
Collapse
-
Creating a Concordance of Word Count for a Text File
-
Concordance of Word
i am a c programming beginner and i am trying to Create a concordance of Word Count for a text File in c programming but my code isn't working.please can u help me out.here is my code:
[code=c]
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
struct word {
struct word *left; /* tree to the left */
struct word *right; /* tree to the right... -
text analyser
how to create a text analyser that builds a data base of words and counts their occurances.usin g a linked list or a binary tree
No activity results to display
Show More