Clippy Game using c++ programming
#include <iostream> #include <conio.h> #include <cstdlib> #include <ctime> #include <string> #include <sstream> using namespace std; void guide(); void body(); void display(char[][9]); // For display of screen void Hint(int); int main() { char choice; body(); cout << "Enter N for new game Q to quit the game"; cin >> choice; if (choice == 'N' || choice == 'n') { system("cls"); body(); } else if (choice == 'q' || choice == 'Q') { exit(0); } } void body() { srand(time(0)); int x, y; int arr[9][9]; string enter; char ar[9][9]{ { '.', '.', '.', '.', '.', '.', '.', '.', '.' }, { '.', '.', '.', '.', '.', '.', '.', '.', '.' }, { '.', '.', '.', '.', '.', ...