When complete, the following program skeleton will search for the string
“Windy” in the array place. If place contains “Windy” the program will
display the message “Windy found.” Otherwise it will display “Windy not
found.”
#include <iostream>
// include any other necessary header files
int main()
{
char place[] = "The Windy City";
// Complete the program. It should search the array place
// for the string "Windy" and display the message "Windy
// found" if it finds the string. Otherwise, it should
// display the message "Windy not found."
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.