Doubt doubt doubt

https://ide.codingblocks.com/s/484728 —> Problem ???

// check path right and down side: Recursive case.

    bool rightSuccess = (maze, soln, i, j + 1, m, n);

    bool downSuccess = (maze, soln, i + 1, j, m, n);

what is this ??
this is not how we call function

Correct one

    // check path right and down side: Recursive case.
    bool rightSuccess = ratInMaze(maze, soln, i, j + 1, m, n);
    bool downSuccess = ratInMaze(maze, soln, i + 1, j, m, n);

sorry!! Actually i was in hurry…

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.