Core backtracking function to find a solution to the Knight's Tour problem on a chessboard.Function parameters include the board, current position of the knight, and move number.Iterates through possible moves, marks visited squares, and backtracks if no solution is found.The function prints the board after the knight completes its tour, showing the order of visited squares.