User Profile

Collapse

Profile Sidebar

Collapse
beanie
beanie
Last Activity: Dec 17 '07, 03:59 AM
Joined: Nov 18 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • beanie
    started a topic Creating a Concordance of Word Count for a Text File
    in C

    Creating a Concordance of Word Count for a Text File

    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...
    See more | Go to post
    Last edited by sicarie; Dec 17 '07, 03:57 AM. Reason: Code tags

  • beanie
    started a topic Concordance of Word
    in C

    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...
    See more | Go to post
    Last edited by numberwhun; Dec 13 '07, 03:51 PM. Reason: add code tags

  • beanie
    started a topic text analyser

    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
    See more | Go to post
No activity results to display
Show More
Working...