Recent content by KV305

  1. K

    C Program Help: Count & Sort Word Occurrences in File

    Ok so far i altered the program and gives no errors but when i try to run it it says "Segmentation fault"... any ideas? #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct AWORD { char wordname[50]; int count; }a_word; a_word nword(char* words) { a_word...
  2. K

    C Program Help: Count & Sort Word Occurrences in File

    C program help! Hey guys I am having trouble completing this C program. Its suppose to ask the user to enter a file to read from, read the file, count how many times each word appears and print the results in a different file(also user input) arranged from high occurrence. Heres what i...
Back
Top