
int load_words(char filename[], char word_list[MAX_WORDS][MAX_LENGTH+1])
/*  Load all the words from file filename, and same them to word_list;
    return 1 if succeeds, and 0 if fails

*/
{
   // implement code here
}

