vault backup: 2024-09-24 22:06:16
This commit is contained in:
parent
b5cfe462a3
commit
28b7389515
@ -31,3 +31,13 @@ Output:
|
||||
for (i = 5, j = i - 1; i > 0, j > 0; --i, j = i - 1)
|
||||
printf("%d ", i);
|
||||
```
|
||||
|
||||
Output:
|
||||
```
|
||||
5 4 3 2
|
||||
```
|
||||
|
||||
> 4. Which one of the following statements is not equivalent to the other two (assuming that the loop bodies are the same?)
|
||||
```c
|
||||
(a) for (i = 0; i < 10)
|
||||
```
|
Loading…
Reference in New Issue
Block a user