Help please...

My code so far --> http://pastebin.com/VNBhw4ES

I would like to know how well I'm going along with the program and help where I have questions in comments.

The program is suppose to allow to read in an English-French Dictionary. Data is taken from a stored file. English words are moved until sorted alphabetically and the corresponding French words are moved along with it. After it's sorted the user can look up an English word and the french equivalent is printed.

prototypes being used are:
1
2
3
4
int read_in(string e[][word_length], string f[][word_length]);
void sort_words(string e[][word_length], string f[][word_length], const int used);
void search_words(const string e[][word_length], const string f[][word_length], const int used);
void write_out(const string e[][word_length], const string f[][word_length], const int used);


Thank you in advance for any help provided.

Edit: The part were I have to open file, read what's inside, and then close it is wrong. Goes to the error part of the code. I'm at my wits here and I'm officially lost I have no idea of what I'm doing. Help me please... Can you explain in Layman's term because this is complex and not easy to grasp at all for me.
Last edited on
Sorry, I will not click a link to a external site, if you want it reviewed, post it here with code tags.

-Thx-
Topic archived. No new replies allowed.