strcpy(listOfWords[randomChoice], selectedWord[numOfWords]);


in the function SelectWord, you're asking strcpy to treat selectedWord as though it were an element within an array of strings. If...