Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 */image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Computer Aided Database Design

Authors: Antonio Albano, Valeria De Antonellis, A. Di Leva

1st Edition

0444877355, 978-0444877352

More Books

Students also viewed these Databases questions