From dc9a5d0289d97c1e1c04be0474be079a1b141529 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Mon, 28 Oct 2024 09:26:30 -0600 Subject: [PATCH] vault backup: 2024-10-28 09:26:30 --- .../software development/ECE1400/Chapter 12 Exercises.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/education/software development/ECE1400/Chapter 12 Exercises.md b/education/software development/ECE1400/Chapter 12 Exercises.md index 2ae3dfc..dd4ccab 100644 --- a/education/software development/ECE1400/Chapter 12 Exercises.md +++ b/education/software development/ECE1400/Chapter 12 Exercises.md @@ -17,3 +17,8 @@ middle = low + (high - low) / 2; 3. What will be the contents of the `a` array after the following statements are executed? ```c {10, 9, 8, 7, 6, 5, 4, 3, 2, 1} +``` + +5. Suppose that `a` is a one dimensional array and `p` is a pointer variable. assuming that the assignment `p = a` has just been performed, which of the following expressions are illegal because of mismatched types? Of the remaining expressions, which are true (have a nonzero value)? +The following expressions are illegal because of mismatched types: +- `` \ No newline at end of file