Question: Write the function evens whose signature is below. The input to evens is a dynamically allocated array of C + + strings and the length
Write the function evens whose signature is below. The input to evens is a dynamically allocated array of C strings and the length of the array. The function evens should create a
new dynamically allocated array containing just the evenlength strings from the input array. It should
then deallocate the input array and return the array of evenlength words. You may write helper
functions, but do not use any data structures other than string from the C standard template
library.
string evensstring words, int len
Note you will need to write a main function to test your code! Consider having one group member
write evens and another write the test code. As you write the test code, do you see a flaw in the
design of our program?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
