vault backup: 2024-09-24 22:06:16

This commit is contained in:
zleyyij 2024-09-24 22:06:16 -06:00
parent b5cfe462a3
commit 28b7389515

View File

@ -30,4 +30,14 @@ Output:
```c
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)
```