vault backup: 2024-11-10 20:41:05

This commit is contained in:
zleyyij 2024-11-10 20:41:05 -07:00
parent 6fc73295ae
commit 21f55263c0

View File

@ -10,4 +10,14 @@ b. Function definitions - Functions should only be defined once, and this allows
---
> **3.** We saw that writing `#include <file>` instead of `#include "file"` may not work if file is one that we've written. Would there be any problem with writing `$include "file`
> **3.** We saw that writing `#include <file>` 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 <file>` 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?
```
```