Question: question is on picture 2. Chapter 3 - Exercise 10 3-10 a. Write a program that will input three c-strings into an array of c-strings.


question is on picture 2.
Chapter 3 - Exercise 10 3-10 a. Write a program that will input three c-strings into an array of c-strings. Print only those that end in "es" or begin in 'yan. Use the following First, use a c-string function to find the length so you know where the last two characters are, then compare the last two characters separately. Second, use a c-string function to compare, all at once, just the first three characters in the c-string (a function similar to stremp, but that will only compare a certain number of characters) You will search two different ways. Use for loops to fill up the array and to loop through the c-strings for the searches b. Use string objects instead of c-strings. Input three strings into an array of strings. Again, use the following First, use a function to find the length for the end comparisons, then again compare the last two characters separately Second, use a string function to take a sub-string of the first three characters for the beginning comparison all at once
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
