[Solved] Pointer and address in C [closed]
If a is an int variable, is it always true that *&a == a ? It should be, but I can’t find a definitive statement to that effect. If p is an int* variable, is it always true that p == &*p ? Yes – in that case, neither the & nor * operators are … Read more