Errors:
1>main.cpp(9): error C2143: syntax error : missing ')' before 'constant'
1>main.cpp(9): error C2143: syntax error : missing ';' before 'constant'
1>main.cpp(9): error C2059: syntax error : ')'
1>main.cpp(63): error C2660: 'checker' : function does not take 9 arguments
1>main.cpp(71): error C2143: syntax error : missing ')' before 'constant'
1>main.cpp(71): error C2143: syntax error : missing ';' before 'constant'
1>main.cpp(71): error C2059: syntax error : ')'
1>main.cpp(72): error C2143: syntax error : missing ';' before '{'
1>main.cpp(72): error C2447: '{' : missing function header (old-style formal list?)
Relevant code:
//line 9:
bool checker(string 11, string 12, string 13, string 21, string 22, string 23, string 31, string 32, string 33);
// lines 71 and 72:
bool checker(string 11, string 12, string 13, string 21, string 22, string 23, string 31, string 32, string 33)
{
// line 63:
if(checker(board [0] [0], board [1] [0], board [2] [0], board [0] [1], board [1] [1], board [2] [1], board [0] [2], board [1] [2], board [2] [2]) == true)
// Also relevant:
string board [3] [3];