Q335
Which of the following statements will assign the address of the age variable to the agePtr pointer?
A.
agePtr = &age;
AnswerB.
agePtr = *age;
C.
&agePtr = age;
D.
*agePtr = age;
E.
agePtr -> *age;
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board