From 73e3013160d5187a8b972b964b64095e042c44de Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:28:09 -0700 Subject: [PATCH] vault backup: 2024-11-05 11:28:09 --- .../ECE1400/Chapter 14 Exercises.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/education/software development/ECE1400/Chapter 14 Exercises.md b/education/software development/ECE1400/Chapter 14 Exercises.md index ad27a20..2d24f30 100644 --- a/education/software development/ECE1400/Chapter 14 Exercises.md +++ b/education/software development/ECE1400/Chapter 14 Exercises.md @@ -1 +1,13 @@ +> **12.** Suppose that the macro `M` has been defined as follows: +```c +#define M 10 +``` +> Which of the following tests will fail? +```c +// C will fail, because `M` is defined. +#ifndef M +``` + +--- + > **13.** Show what the following program will look like after preprocessing. You may ignore any lines added to the program as a result of including the `` header.