vault backup: 2024-11-19 14:25:06

This commit is contained in:
zleyyij 2024-11-19 14:25:06 -07:00
parent a036bfb790
commit d5d9a922db

View File

@ -23,3 +23,9 @@ struct {
int e[5];
} f, *p = &f;
```
> Which of the following statements are legal?
(a) `p->b = ' ';`
(b) `p->e[3] = 10;`
(c) `(*p).d.a = '*';`
(d) `p->d->c = 20;`