Just like the title says, I'm trying to see if I could assign a variable that contains a string to another variable that contains a string.
For example:
printf("Enter word to search in file: ");
scanf("%s", word);
word = words;
In this case, the string in word
would be assigned to the string in words
.