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?
|
||||
|
|
|
The condition you've specified is wrong, following is the correct one.
|
|||
|
|
|
As others have noted, you want |
|||
|
|
|
I think you want
|
|||
|