Question
Write a C++ function to read N words from a file called input.txt (which is in the same directory as your code). Then the function
Write a C++ function to read N words from a file called input.txt (which is in the same directory as your code). Then the function should find if a given expression exists in any of the words. The function then writes the words that contain that expression in output.txt. The function prototype is as follows:
void findExpression(int N, char expr[ ], int sizeexpr); /* reads N words from input.txt, looks for the expression in the expr array (which has sizeexpr letters) in each word, and writes the words that have the given expression in output.txt */
For example, assume input.txt contains the following words: Boston cheers astonished Stop Providence After function call char myword ]-"sto" findExpression (5, myword, 3) output.txt will include Boston astonished Make sure to test your function as needed
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started