From a036bfb790861e4ffe7e6a4ad224f588450c7d4d Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 19 Nov 2024 14:20:06 -0700 Subject: [PATCH] vault backup: 2024-11-19 14:20:06 --- .../ECE1400/Chapter 17 Exercises.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/education/software development/ECE1400/Chapter 17 Exercises.md b/education/software development/ECE1400/Chapter 17 Exercises.md index c970b07..bb3a09a 100644 --- a/education/software development/ECE1400/Chapter 17 Exercises.md +++ b/education/software development/ECE1400/Chapter 17 Exercises.md @@ -12,3 +12,14 @@ p = ▭ ``` --- + +> **5.** Suppose that `f` and `p` are declared as follows: +```c +struct { + union { + char a, b; + int c; + } d; + int e[5]; +} f, *p = &f; +``` \ No newline at end of file