Question: Resolving Pointers in C++ Given the image above, fill in the code belo
ID: 3844287 • Letter: Q
Question
Question: Resolving Pointers in C++
Given the image above, fill in the code below with the correct symbols.
int_ a = ________;
int_ b = __ a;
int [ Select ] ["", "*", "&"] a = [ Select ] ["3", "new int(3)"] ;
int [ Select ] ["", "*", "&"] b = [ Select ] ["", "*", "&"] a;
Explain why your answer is correct. I am not sure which choice would be correct. If * is required or & is selected, please explain why those are the correct symbols.
b 3 a 3