I found it not correct to do this in Objective C. So anything wrong here?
for (int i=10; i<=0; i--)
I found it not correct to do this in Objective C. So anything wrong here?
for (int i=10; i<=0; i--)
The condition you've specified is wrong, following is the correct one.
for (int i=10; i>=0; i--)
for (int i=10; i>=0; i--)
You had it as less than or equal to zero, not greater than or equal to zero