How to declare an int and double in for loop in objective-c? - Stack ...

How to declare an int and double in for loop in objective-c? - Stack ...

瀏覽:1446
日期:2026-04-22
You can only use a single statement in the loop initializer. So you'll have to declare at least one of your vars outside the loop: int i; double j; for (i = 0, ......看更多