vault backup: 2024-11-05 11:28:09

This commit is contained in:
zleyyij 2024-11-05 11:28:09 -07:00
parent 086b771d9e
commit 73e3013160

View File

@ -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 `<stdio.h>` header.