Code: #include #include #define MAX_CHAR 132 #define MAX_SIZE 65536 FILE *file; int main(void) { file = fopen("words", "r"); char ch; char string[MAX_CHAR]; char temp[MAX_CHAR]; char words[MAX_SIZE][MAX_CHAR]; register int counter = 0, number = 0, a = 0; srand(time(NULL)); while ( fgets(&string, MAX_CHAR+1, file) != NULL ) { a=0; while ( string[a++] != '\n' ); string[a-1] = 0; strcpy(words[counter++], string); ...