From 28b7389515eeab2090692e2abdfc75c2444406bd Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 24 Sep 2024 22:06:16 -0600 Subject: [PATCH] vault backup: 2024-09-24 22:06:16 --- .../ECE1400/Chapter 6 Exercises.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/education/software development/ECE1400/Chapter 6 Exercises.md b/education/software development/ECE1400/Chapter 6 Exercises.md index bfb78fc..3c141b4 100644 --- a/education/software development/ECE1400/Chapter 6 Exercises.md +++ b/education/software development/ECE1400/Chapter 6 Exercises.md @@ -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) ``` \ No newline at end of file