Multiple Choice
Which of the following assigns to p1 the pointer to the address of value?
A) *p1=&value;
B) p1=value;
C) p1=&value;
D) &p1 = *value;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: Which of the following correctly declares a
Q2: Which of the following is not true?<br>A)
Q3: Which of the following statements correctly prints
Q5: Declare a pointer variable named ptr to
Q6: Dynamically created variables have no name.
Q7: What is the output of the following
Q8: Even though pointers point to addresses which
Q9: Given that p1 is a pointer variable
Q10: Assuming that the pointer variable p1 is
Q11: In which case would you consider using