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
// include any other necessary header files
using namespace std;
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."
return 0;
}
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.