Arrays-Spiral Print Anticlockwise

Take as input a 2-d array. Print the 2-D array in spiral form anti-clockwise. check my code https://ide.codingblocks.com/s/377186

please make the correct changes and please tell me what is the mistake

if (endcol > startcol)
{
correct condition is
if (endcol >= startcol)
{

similarly for this

if (endrow >= startrow)
{

after this modification all testcases will passed

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.