If i is an integer and p and q are pointers to integers, which of the following assignments cause a compilation error?
a.
p = &i;b.
p = *&i;c.
p = &*i;d.
i = *&*p;e.
i = *&p;f.
i = &*p;g.
p = &*&i;h.
q = *&*p;i.
q = **&p;j.
q = *&p;k.
q = &*p;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.