Create a program that searches user inputted substring within the text. Requirem
ID: 649682 • Letter: C
Question
Create a program that searches user inputted substring within the text.
Requirements:
Program should read the text from file (number of characters > 200).
User should be able to search different substrings in the same file (looping).
The search should be implemented using one of the following algorithms (do not use built-in search
functions!!!):
Knuth-Morris-Pratt algorithm.
If substring is found, then program should output its start position in the text. If substring is not found, then program should output appropriate message.