notes/education/software development/ECE1400/Chapter 14 Exercises.md

14 lines
369 B
Markdown
Raw Normal View History

2024-11-05 18:28:09 +00:00
> **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
```
---
2024-11-05 18:23:09 +00:00
> **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.