#include #define N 4 using namespace std; void printSolution(int board[N][N]) { cout<<"\n"; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) cout<<""<=0 && j>=0; i--, j--) if (board[i][j]) return false; /* Check lower diagonal on left side */ for (i=row, j=col; j>=0 && i= N){ printSolution(board); return; } /* Consider this column and try placing this queen in all rows one by one */ for (int i = 0; i < N; i++) { /* Check if queen can be placed on board[i][col] */ if ( isSafe(board, i, col) ) { /* Place this queen in board[i][col] */ // cout<<"\n"<