Multiple Choice
Given that a typedef for IntPtr defines a pointer to an integer, what would be the correct declaration for a function that expects a reference to an integer pointer?
A) void f1 IntPtr& ptr) ;
B) void f1 IntPtr&* ptr) ;
C) void f1 IntPtr*& ptr) ;
D) All of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q12: If p1 is an integer pointer that
Q13: When you return a dynamic array to
Q14: Write the code to declare a dynamic
Q15: What is the output of the following
Q16: Write the code to return the dynamic
Q18: The size of dynamic arrays must be
Q19: If a program requires a dynamically allocate
Q20: The size of a dynamic array is
Q21: Dynamic variables are created at _
Q22: Which of the following correctly declare 3