Question: In C++ Define a C-string function void copyWithFilter(char * destination, const char * source, const char * filter) that copies the characters of C-string source

In C++

Define a C-string function void copyWithFilter(char * destination, const char * source, const char * filter) that copies the characters of C-string source into destination, but omits any characters that are NOT in the C-string filter. For example filter(w, "bananas", "aeiou"); cout << w; will output "aaa". Hint: include a helper function bool isIn(char c, const char * s) ; that returns true iff c is a character in s. Use pointer notation. No square brackets allowed. Driver at http://www.chabotcollege.edu/Faculty/jtraugott/CodeLab/filter.cpp

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!