Question: Assume memory address a=1111, b=2222, c=3333, d=4444 int a, b, *c, **d; a = :9; b = &a; C = b; d = &c;

Assume memory address a=1111, b=2222, c=3333, d=4444 int a, b, *c, **d; a = :9; b = &a; C = b; d = &c; *c = 3; *b = 8; What is the results of cout < < a ? &a ? ? b ? &b ? *b ? C ? *C ? **C ? d ? *d ? (*(*d) ?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
