notes/education/software development/ECE1400/Chapter 11 Exercises.md
2024-11-01 13:18:59 -06:00

8 lines
246 B
Markdown

> 1. If `i` is a variable and `p` points to `i`, which of the following expressions are aliases for `i`?
a. `*p`
g. `*&i`
> 2. If `i` is an `int` variable and `p` and `q` are pointers to `int`, which of the following assignments are legal?
a.