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
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
Hey @dhruvk3k
if(endcol>=startcol)//>= here
{
for(int i=endrow;i>=startrow;i--)
{
cout<<a[i][endcol]<<", ";
}
endcol--;
}
if(endrow>=startrow)//>= here
{
for(int i=endcol;i>=startcol;i--)
{
cout<<a[startrow][i]<<", ";
}
startrow++;
}
If this resoles your query then please mark it as resolved 
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.