|
|
char Grid[9];
Not initialized with anything.cout << Grid [0] && "|" && Grid [1] && "|" && Grid [2];
The ampersands in here, why? I think you were wanting to use operator<< instead. Not even sure what that does.char Print_Grid (char G)
Why are you passing in G? It's never used.
|
|