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

This commit is contained in:
zleyyij 2024-11-10 20:51:05 -07:00
parent 2799f844b4
commit 86ecc96c92

View File

@ -19,6 +19,11 @@ Yes, `""` is a path relative to the current file, whereas `<>` is a path to the
> **4.** Assume that `debug.h` is a header file with the following contents...
>(a). What is the output when the program is executed?
```
Output if DEBUG is defined:\n
Value of " #n"
Output if DEBUG is defined:
Value of i: 1
Value of j: 2
Value of i + j: 3
Value of 2 * i + j - k: 1
```
> (b). What is the output if the `#define` directive is removed from `testdebug.c`?
>