So i've been working on a basic tic tac toe game in Visual studio, except when i try to run it, it says my function's identifiers are not found. I'm pretty sure my code was correct, but what's up with it?
int main()
{
while (checkVictory() == false)
{
printBoard();
input();
}
return EXIT_SUCCESS;
}
Here's what the errors look like:
1>c:\users\micha\source\repos\project2\project2\source.cpp(29): error C3861: 'changesquare': identifier not found
1>c:\users\micha\source\repos\project2\project2\source.cpp(30): error C3861: 'checkVictory': identifier not found
1>c:\users\micha\source\repos\project2\project2\source.cpp(36): warning C4805: '!=': unsafe mix of type 'char' and type 'bool' in operation
1>c:\users\micha\source\repos\project2\project2\source.cpp(58): error C3861: 'checkrow': identifier not found
1>c:\users\micha\source\repos\project2\project2\source.cpp(58): error C3861: 'checkcol': identifier not found
1>c:\users\micha\source\repos\project2\project2\source.cpp(58): error C3861: 'diagonal': identifier not found