What is problem in my code?

this is the code link
its spiral traversal of a 2d array
pls tell me where is problem in my code

Hello @devyanshbansal123,

You are accessing wrong element from the grid,

  1. Inside if(endrow>startrow), it should be,

cout<<a[endrow][j]<<" ";

  1. Inside if(endcol>startcol), it should be,

cout<<a[i][startcol]<<" ";

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.

yes thank you so much

1 Like