This is an old revision of the document!
char *word_list[10][20]; // 10 words, each word has 20 byte, 19 letters
int word_cnt;
printf("How many words do you want?:");
scanf("%d", word_cnt);
printf("Please enter %d words\n", word_cnt);
for( int i=0; i<word_cnt; i++) {
printf("Enter %d th word:", i);
scanf("%s", word_list[i]);
}