write my assignment 7601

x; y; grid [] []; z; j; { alphabet[] = { , , , , , , ,, , , , , , ,, , , , , , ,, , , , }; (); (, &x, &y); (z = ; z < x; z++) { (j=; j < y; j++){grid [z] [j] = alphabet[rand() % ];}} (z = ; z < x; z++) { (j=; j < y; j++){ (, grid [z] [j]);} ();}}

Can you help edit and modify the following code to add it to the above code to allow users to enter words found in the grid above. If not can you explain to me how I can do it on my own?

// C++ program to check if the word 

// exists in the grid or not 

#include <bits/stdc++.h> 

using namespace std; 

#define r 4 

#define c 5 

// Function to check if a word exists in a grid 

// starting from the first match in the grid 

// level: index till which pattern is matched 

// x, y: current position in 2D array 

bool findmatch(char mat[r], string pat, int x, int y, 

 
"Not answered?"
Get the Answer