I have a struct str *s;
struct str *s
Let var be a variable in s. Is &s->var equal to &(s->var)?
var
s
&s->var
&(s->var)
Yes, because the pointer dereference operator -> has higher precedence than the address operator &.
->
&