Assume the address of name is 10 and the address of x is 14. (That is, name is stored in memory location 10, and x is stored in memory location 14.) problem refer to the following statements:
int i1, i2;
int *p1, *p2;
i1 = 5;
p1 = &i1;
i2 = *p1/2 + 10;
p2 = p1;
What is the value of *p2?
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.