diff --git a/education/software development/ECE1400/Chapter 15 Exercises.md b/education/software development/ECE1400/Chapter 15 Exercises.md index 56b51ea..71f2c06 100644 --- a/education/software development/ECE1400/Chapter 15 Exercises.md +++ b/education/software development/ECE1400/Chapter 15 Exercises.md @@ -10,4 +10,14 @@ b. Function definitions - Functions should only be defined once, and this allows --- -> **3.** We saw that writing `#include ` instead of `#include "file"` may not work if file is one that we've written. Would there be any problem with writing `$include "file` \ No newline at end of file +> **3.** We saw that writing `#include ` instead of `#include "file"` may not work if file is one that we've written. Would there be any problem with writing `$include "file"` instead of `#include ` if *file* is a system header? + +Yes, `""` is a path relative to the current file, whereas `<>` is a path to the system's standard library headers. + +--- + +> **4.** Assume that `debug.h` is a header file with the following contents... +>(a). What is the output when the program is executed? +``` + +``` \ No newline at end of file