View Single Post
Old Apr 3rd, 2005, 6:47 PM   #9
Daniel_kd
Newbie
 
Daniel_kd's Avatar
 
Join Date: Apr 2005
Posts: 22
Rep Power: 0 Daniel_kd is on a distinguished road
last ten words of a file? I would read all the words and create a list with the following structor
struct member
{
char word[80];
int place;
struct word *next;
}
then count them and print the last ten.If you want more info on how to use this pm. You can even use this to put them in alphabetical order.

Last edited by Daniel_kd; Apr 3rd, 2005 at 6:51 PM.
Daniel_kd is offline   Reply With Quote