//m= moveNumber, v=vertical, h=horizontal, c=count
bool knightTour(int chess[][8], int row, int column, int c, int m, int h[], int v[])
{
if(c==63)
return true;
1. Your code is heavily unreadable. Please use [code ]/*Your Code Here*/[/code] tags which you easily may put into your chat using this funny "<>"-button on the right of this message composing window.
2. What do you expect your program hast to do and what is it doing instead?