Not getting any output

After implementing the code for solving soduku, I am not getting any ouput on the console. Is my memory stack is overflowing due to recursion calls ?
The code is given at https://ide.codingblocks.com/s/267034

hi @souptiksarkar4572 your code is correct but your input matrix is wrong
This is the correct one

int matrix[9][9] = {
        {5, 3, 0, 0, 7, 0, 0, 0, 0},
        {6, 0, 0, 1, 9, 5, 0, 0, 0},
        {0, 9, 8, 0, 0, 0, 0, 6, 0},
        {8, 0, 0, 0, 6, 0, 0, 0, 3},
        {4, 0, 0, 8, 0, 3, 0, 0, 1},
        {7, 0, 0, 0, 2, 0, 0, 0, 6},
        {0, 6, 0, 0, 0, 0, 2, 8, 0},
        {0, 0, 0, 4, 1, 9, 0, 0, 5},
        {0, 0, 0, 0, 8, 0, 0, 7, 9}
    };

Thank you very much for pointing out my mistake. It was a very grave mistake on my part.

1 Like