From a8819068c35f5b329ceb98d2885e512b20c4f2a5 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:33:13 -0700 Subject: [PATCH] vault backup: 2024-11-05 11:33:13 --- education/software development/ECE1400/Chapter 14 Exercises.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/education/software development/ECE1400/Chapter 14 Exercises.md b/education/software development/ECE1400/Chapter 14 Exercises.md index 2d24f30..194bfa9 100644 --- a/education/software development/ECE1400/Chapter 14 Exercises.md +++ b/education/software development/ECE1400/Chapter 14 Exercises.md @@ -6,6 +6,9 @@ ```c // C will fail, because `M` is defined. #ifndef M + +// E will fail, because `M` is defined +#if !defined(M) ``` ---